Nuxt/bin/nuxt

28 lines
534 B
Plaintext
Raw Normal View History

2016-11-08 00:18:26 +00:00
#!/usr/bin/env node
// Show logs
process.env.DEBUG = process.env.DEBUG || 'nuxt:*'
2018-01-11 14:11:49 +00:00
const { join } = require('path')
const { Utils } = require('..')
2016-11-07 01:34:58 +00:00
2018-01-11 14:11:49 +00:00
// Global error handler
process.on('unhandledRejection', _error => {
Utils.printError(_error)
2018-01-11 14:11:49 +00:00
})
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)