2016-11-08 00:18:26 +00:00
|
|
|
#!/usr/bin/env node
|
2018-01-11 14:11:49 +00:00
|
|
|
const { join } = require('path')
|
|
|
|
const { logError } = require('../lib/common/utils')
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2018-01-11 14:11:49 +00:00
|
|
|
// Global error handler
|
|
|
|
process.on('unhandledRejection', _error => {
|
|
|
|
logError(_error) // eslint-disable no-console
|
|
|
|
})
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2017-06-16 12:42:45 +00:00
|
|
|
const defaultCommand = 'dev'
|
2018-01-11 14:11:49 +00:00
|
|
|
const commands = new Set([defaultCommand, 'init', 'build', 'start', 'generate'])
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2016-12-09 18:40:59 +00:00
|
|
|
var cmd = process.argv[2]
|
2016-11-07 01:34:58 +00:00
|
|
|
|
|
|
|
if (commands.has(cmd)) {
|
2017-01-20 11:43:48 +00:00
|
|
|
process.argv.splice(2, 1)
|
2016-11-07 01:34:58 +00:00
|
|
|
} else {
|
|
|
|
cmd = defaultCommand
|
|
|
|
}
|
|
|
|
|
2017-06-16 12:42:45 +00:00
|
|
|
const bin = join(__dirname, 'nuxt-' + cmd)
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2017-01-20 11:43:48 +00:00
|
|
|
require(bin)
|