You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.5 KiB

9 years ago
#!/usr/bin/env node
// Native
import {resolve} from 'path'
// Packages
import minimist from 'minimist'
import {spawn} from 'cross-spawn'
// Ours
import checkUpdate from '../lib/check-update'
9 years ago
const argv = minimist(process.argv.slice(2))
9 years ago
// options
const debug = argv.debug || argv.d
9 years ago
// auto-update checking
const update = checkUpdate({debug})
const exit = code => {
update.then(() => process.exit(code))
9 years ago
// don't wait for updates more than a second
// when the process really wants to exit
setTimeout(() => process.exit(code), 1000)
}
9 years ago
const defaultCommand = 'deploy'
const commands = new Set([
defaultCommand,
'list',
'ls',
'rm',
'remove',
'alias',
'aliases',
'ln',
'domain',
'domains',
'dns',
'cert',
'certs',
'secret',
'secrets'
])
const aliases = new Map([
['ls', 'list'],
['rm', 'remove'],
['ln', 'alias'],
['aliases', 'alias'],
['domain', 'domains'],
['cert', 'certs'],
['secret', 'secrets']
])
let cmd = argv._[0]
let args = []
9 years ago
if (cmd === 'help') {
cmd = argv._[1]
if (!commands.has(cmd)) {
cmd = defaultCommand
}
args.push('--help')
}
9 years ago
if (commands.has(cmd)) {
cmd = aliases.get(cmd) || cmd
args = args.concat(process.argv.slice(3))
9 years ago
} else {
cmd = defaultCommand
args = args.concat(process.argv.slice(2))
9 years ago
}
let bin = resolve(__dirname, 'now-' + cmd)
if (process.pkg) {
args.unshift('--entrypoint', bin)
bin = process.execPath
}
const proc = spawn(bin, args, {
stdio: 'inherit',
customFds: [0, 1, 2]
})
proc.on('close', code => exit(code))
proc.on('error', () => exit(1))