-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.x] Introduce
clean-orphaned-assets
binary (#251)
* Introduce script to purge orphaned assets * Write to stderr * Adopt "clean" naming
- Loading branch information
1 parent
6450b9f
commit b77e7ad
Showing
2 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 info = quiet ? (() => undefined) : console.log | ||
const error = quiet ? (() => undefined) : console.error | ||
|
||
/* | ||
* Clean. | ||
*/ | ||
|
||
const main = () => { | ||
info(`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) { | ||
error('Did not expected SSR manifest.') | ||
|
||
process.exit(1) | ||
} | ||
|
||
isSsr | ||
? info(`SSR manifest found.`) | ||
: info(`Non-SSR manifest found.`) | ||
|
||
const manifestAssets = isSsr | ||
? manifestKeys.flatMap(key => manifest[key]) | ||
: manifestKeys.map(key => manifest[key].file) | ||
|
||
info(`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) { | ||
info(`No ophaned assets found.`) | ||
} else { | ||
orphanedAssets.length === 1 | ||
? info(`[${orphanedAssets.length}] orphaned asset found.`) | ||
: info(`[${orphanedAssets.length}] orphaned assets found.`) | ||
|
||
orphanedAssets.forEach(asset => { | ||
const path = `${assetsDirectory}/${asset.name}` | ||
|
||
dryRun | ||
? info(`Orphaned asset [${path}] would be removed.`) | ||
: info(`Removing orphaned asset [${path}].`) | ||
|
||
if (! dryRun) { | ||
unlinkSync(path) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters