Nuxt/bin/nuxt
yuchonghua 59a0df86bf remove cross-spawn
Do not use cross-spawn, to facilitate the use of process.send node-fork
for pipe communication
2017-01-19 01:40:35 +08:00

25 lines
343 B
JavaScript
Executable File

#!/usr/bin/env node
var join = require('path').join
var defaultCommand = 'dev'
var commands = new Set([
defaultCommand,
'init',
'build',
'start',
'generate'
])
var cmd = process.argv[2]
if (commands.has(cmd)) {
process.argv.splice(2,1)
} else {
cmd = defaultCommand
}
var bin = join(__dirname, 'nuxt-' + cmd)
require(bin);