2017-05-07 22:47:40 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
import { resolve, join } from 'path'
|
|
|
|
import { existsSync } from 'fs'
|
2018-12-15 21:55:59 +00:00
|
|
|
import arg from 'arg'
|
2018-09-04 09:21:00 +00:00
|
|
|
import exportApp from '../export'
|
2018-09-27 19:10:53 +00:00
|
|
|
import { printAndExit } from '../server/lib/utils'
|
2017-05-07 22:47:40 +00:00
|
|
|
|
2018-12-15 21:55:59 +00:00
|
|
|
const args = arg({
|
|
|
|
// Types
|
|
|
|
'--help': Boolean,
|
|
|
|
'--silent': Boolean,
|
|
|
|
'--outdir': String,
|
|
|
|
'--threads': Number,
|
|
|
|
'--concurrency': Number,
|
|
|
|
|
|
|
|
// Aliases
|
|
|
|
'-h': '--help',
|
|
|
|
'-s': '--silent',
|
2018-12-31 13:44:27 +00:00
|
|
|
'-o': '--outdir',
|
2017-05-07 22:47:40 +00:00
|
|
|
})
|
|
|
|
|
2018-12-15 21:55:59 +00:00
|
|
|
if (args['--help']) {
|
2018-12-31 13:44:27 +00:00
|
|
|
// tslint:disable-next-line
|
2017-05-07 22:47:40 +00:00
|
|
|
console.log(`
|
|
|
|
Description
|
|
|
|
Exports the application for production deployment
|
|
|
|
|
|
|
|
Usage
|
2017-05-09 02:10:55 +00:00
|
|
|
$ next export [options] <dir>
|
2017-05-07 22:47:40 +00:00
|
|
|
|
|
|
|
<dir> represents where the compiled dist folder should go.
|
2017-09-12 18:54:32 +00:00
|
|
|
If no directory is provided, the 'out' folder will be created in the current directory.
|
2017-05-09 02:10:55 +00:00
|
|
|
|
|
|
|
Options
|
|
|
|
-h - list this help
|
2017-05-15 03:43:08 +00:00
|
|
|
-o - set the output dir (defaults to 'out')
|
2017-05-11 16:23:08 +00:00
|
|
|
-s - do not print any messages to console
|
2017-05-07 22:47:40 +00:00
|
|
|
`)
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2018-12-15 21:55:59 +00:00
|
|
|
const dir = resolve(args._[0] || '.')
|
2017-05-07 22:47:40 +00:00
|
|
|
|
|
|
|
// Check if pages dir exists and warn if not
|
|
|
|
if (!existsSync(dir)) {
|
|
|
|
printAndExit(`> No such directory exists as the project root: ${dir}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!existsSync(join(dir, 'pages'))) {
|
|
|
|
if (existsSync(join(dir, '..', 'pages'))) {
|
|
|
|
printAndExit('> No `pages` directory found. Did you mean to run `next` in the parent (`../`) directory?')
|
|
|
|
}
|
|
|
|
|
|
|
|
printAndExit('> Couldn\'t find a `pages` directory. Please create one under the project root')
|
|
|
|
}
|
|
|
|
|
2017-05-09 02:10:55 +00:00
|
|
|
const options = {
|
2018-12-15 21:55:59 +00:00
|
|
|
silent: args['--silent'] || false,
|
|
|
|
threads: args['--threads'],
|
|
|
|
concurrency: args['--concurrency'],
|
2018-12-31 13:44:27 +00:00
|
|
|
outdir: args['--outdir'] ? resolve(args['--outdir']) : join(dir, 'out'),
|
2017-05-09 02:10:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 15:11:19 +00:00
|
|
|
exportApp(dir, options)
|
|
|
|
.then(() => {
|
|
|
|
printAndExit('Export successful', 0)
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
printAndExit(err)
|
|
|
|
})
|