-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcli.js
53 lines (44 loc) · 1.26 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const path = require('path')
const { existsSync } = require('fs')
const loader = require('./loader')
const base = require.resolve('next', { paths: ['.'] }).replace('/dist/server/next.js', '')
const { default: nextBuild } = require(`${base}/dist/build`)
const arg = require(`${base}/dist/compiled/arg`)
const { printAndExit } = require(`${base}/dist/server/lib/utils`)
const args = arg({
// Types
'--help': Boolean,
// Aliases
'-h': '--help',
})
if (args['--help']) {
printAndExit(
`
Description
Rebuilds all of the images in the persistent cache
Usage
$ next-img <dir>
<dir> represents the directory of the Next.js application.
If no directory is provided, the current directory is used.
`,
0,
)
}
const dir = path.resolve(args._[0] || '.')
// Check if the provided directory exists
if (!existsSync(dir)) {
printAndExit(`> Directory not found: ${dir}`)
}
// Pass some info to the next-img plugin via an ENV variable
// to tell it to clear and then rebuild the persistent cache
process.env.NEXT_IMG_REBUILD = true
nextBuild(dir)
.then(async (...res) => {
await loader.gc()
process.exit(0)
})
.catch(err => {
console.error('')
console.error('> Build error occurred')
printAndExit(err)
})