mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
33 lines
637 B
JavaScript
Executable File
33 lines
637 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
var join = require('path').join
|
|
var spawn = require('cross-spawn').spawn
|
|
|
|
var defaultCommand = 'dev'
|
|
var commands = new Set([
|
|
defaultCommand,
|
|
'init',
|
|
'build',
|
|
'start',
|
|
'generate'
|
|
])
|
|
|
|
var cmd = process.argv[2]
|
|
var args
|
|
|
|
if (commands.has(cmd)) {
|
|
args = process.argv.slice(3)
|
|
} else {
|
|
cmd = defaultCommand
|
|
args = process.argv.slice(2)
|
|
}
|
|
|
|
var bin = join(__dirname, 'nuxt-' + cmd)
|
|
|
|
var proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] })
|
|
proc.on('close', (code) => process.exit(code))
|
|
proc.on('error', (err) => {
|
|
console.error(err) // eslint-disable-line no-console
|
|
process.exit(1)
|
|
})
|