Skip to content

Commit

Permalink
Introduce script to purge orphaned assets
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed Dec 14, 2023
1 parent 6450b9f commit f7a34a5
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
91 changes: 91 additions & 0 deletions bin/purge-orphaned-assets.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
#!/usr/bin/env node

import { readFileSync, readdirSync, unlinkSync } from 'fs'
import { dirname } from 'path'

/*
* Argv helpers.
*/

const argument = (name, fallback) => {
const index = process.argv.findIndex(argument => argument.startsWith(`--${name}=`))

return index === -1
? fallback()
: process.argv[index].substring(`--${name}=`.length)
}

const option = (name) => process.argv.includes(`--${name}`)

/*
* Configuration.
*/

const dryRun = option(`dry-run`)
const quiet = option(`quiet`)
const wantsSsr = option('ssr')
const manifestPath = argument(`manifest`, () => wantsSsr ? `./bootstrap/ssr/ssr-manifest.json` : `./public/build/manifest.json`)
const assetsDirectory = argument(`assets`, () => `${dirname(manifestPath)}/assets`)

/*
* Helpers.
*/

const write = quiet ? (() => undefined) : console.log

/*
* Clean.
*/

const main = () => {
write(`Reading manifest [${manifestPath}].`)

const manifest = JSON.parse(readFileSync(manifestPath).toString())

const manifestKeys = Object.keys(manifest)

const isSsr = Array.isArray(manifest[manifestKeys[0]])

if (wantsSsr && ! isSsr) {
write('Did not find an SSR manifest.')

process.exit(1)
}

isSsr
? write(`SSR manifest found.`)
: write(`Non-SSR manifest found.`)

const manifestAssets = isSsr
? manifestKeys.flatMap(key => manifest[key])
: manifestKeys.map(key => manifest[key].file)

write(`Verify assets in [${assetsDirectory}].`)

const allAssets = readdirSync(assetsDirectory, { withFileTypes: true })

const orphanedAssets = allAssets.filter(file => file.isFile())
.filter(file => manifestAssets.findIndex(asset => asset.endsWith(`/${file.name}`)) === -1)

if (orphanedAssets.length === 0) {
write(`No ophaned assets found.`)
} else {
orphanedAssets.length === 1
? write(`[${orphanedAssets.length}] orphaned asset found.`)
: write(`[${orphanedAssets.length}] orphaned assets found.`)

orphanedAssets.forEach(asset => {
const path = `${assetsDirectory}/${asset.name}`

dryRun
? write(`Orphaned asset [${path}] would be removed.`)
: write(`Removing orphaned asset [${path}].`)

if (! dryRun) {
unlinkSync(path)
}
})
}
}

main()
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "laravel-vite-plugin",
"type": "module",
"version": "0.8.1",
"description": "Laravel plugin for Vite.",
"keywords": [
Expand Down Expand Up @@ -30,6 +31,9 @@
"/dist",
"/inertia-helpers"
],
"bin": {
"purge-orphaned-assets": "bin/purge-orphaned-assets.js"
},
"scripts": {
"build": "npm run build-plugin && npm run build-inertia-helpers",
"build-plugin": "rm -rf dist && npm run build-plugin-types && npm run build-plugin-esm && cp src/dev-server-index.html dist/",
Expand Down

0 comments on commit f7a34a5

Please sign in to comment.