mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +00:00
9c1e0d1743
Co-authored-by: Clark Du <clark.duxin@gmail.com> Co-authored-by: Pooya Parsa <pooya@pi0.ir>
45 lines
824 B
JavaScript
Executable File
45 lines
824 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const consola = require('consola')
|
|
const cli = require('../dist/cli.js')
|
|
|
|
// Global error handler
|
|
process.on('unhandledRejection', (err) => {
|
|
consola.error(err)
|
|
})
|
|
|
|
// Exit process on fatal errors
|
|
consola.add({
|
|
log(logObj) {
|
|
if (logObj.type === 'fatal') {
|
|
process.stderr.write('Nuxt Fatal Error :(\n')
|
|
process.exit(1)
|
|
}
|
|
}
|
|
})
|
|
|
|
const defaultCommand = 'dev'
|
|
const commands = new Set([
|
|
defaultCommand,
|
|
'build',
|
|
'start',
|
|
'generate'
|
|
])
|
|
|
|
let cmd = process.argv[2]
|
|
|
|
if (commands.has(cmd)) {
|
|
process.argv.splice(2, 1)
|
|
} else {
|
|
cmd = defaultCommand
|
|
}
|
|
|
|
// Apply default NODE_ENV if not provided
|
|
if (!process.env.NODE_ENV) {
|
|
process.env.NODE_ENV = cmd === 'dev' ? 'development' : 'production'
|
|
}
|
|
|
|
cli[cmd]().then(m => m.default()).catch((error) => {
|
|
consola.fatal(error)
|
|
})
|