#!/usr/bin/env node

const join = require('path').join

const defaultCommand = 'dev'
const 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
}

const bin = join(__dirname, 'nuxt-' + cmd)

// Console error unhandled promises
process.on('unhandledRejection', function (err) {
  /* eslint-disable no-console */
  console.error(err)
  console.error('[nuxt] Unhandled promise rejection: ' + err)
})

require(bin)