2016-10-05 23:52:50 +00:00
|
|
|
#!/usr/bin/env node
|
2017-01-05 21:00:55 +00:00
|
|
|
import { resolve, join } from 'path'
|
2017-01-15 12:15:06 +00:00
|
|
|
import { existsSync } from 'fs'
|
2016-10-05 23:52:50 +00:00
|
|
|
import parseArgs from 'minimist'
|
2016-10-06 11:05:52 +00:00
|
|
|
import build from '../server/build'
|
2017-01-15 12:15:06 +00:00
|
|
|
import { printAndExit } from '../lib/utils'
|
2016-10-05 23:52:50 +00:00
|
|
|
|
2017-01-16 03:58:45 +00:00
|
|
|
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
const argv = parseArgs(process.argv.slice(2), {
|
|
|
|
alias: {
|
2016-10-17 00:00:17 +00:00
|
|
|
h: 'help'
|
2016-10-05 23:52:50 +00:00
|
|
|
},
|
|
|
|
boolean: ['h']
|
|
|
|
})
|
|
|
|
|
2016-12-18 20:28:34 +00:00
|
|
|
if (argv.help) {
|
|
|
|
console.log(`
|
|
|
|
Description
|
|
|
|
Compiles the application for production deployment
|
|
|
|
|
|
|
|
Usage
|
|
|
|
$ next build <dir>
|
|
|
|
|
2017-04-06 10:09:26 +00:00
|
|
|
<dir> represents where the compiled dist folder should go.
|
|
|
|
If no directory is provided, the dist folder will be created in the current directory.
|
|
|
|
You can set a custom folder in config https://github.com/zeit/next.js#custom-configuration, otherwise it will be created inside '.next'
|
2016-12-18 20:28:34 +00:00
|
|
|
`)
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
const dir = resolve(argv._[0] || '.')
|
|
|
|
|
2017-01-05 21:00:55 +00:00
|
|
|
// Check if pages dir exists and warn if not
|
2017-01-15 12:15:06 +00:00
|
|
|
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?')
|
2017-01-05 21:00:55 +00:00
|
|
|
}
|
2017-01-15 12:15:06 +00:00
|
|
|
|
|
|
|
printAndExit('> Couldn\'t find a `pages` directory. Please create one under the project root')
|
|
|
|
}
|
2017-01-05 21:00:55 +00:00
|
|
|
|
2016-10-06 11:05:52 +00:00
|
|
|
build(dir)
|
2016-10-05 23:52:50 +00:00
|
|
|
.catch((err) => {
|
|
|
|
console.error(err)
|
2016-10-25 15:03:24 +00:00
|
|
|
process.exit(1)
|
2016-10-05 23:52:50 +00:00
|
|
|
})
|