feat: add --quite mode for nuxt-build (#3700)

* feat: add quite mode for nuxt-build

* fix: typoe

* fix: better description

* revert: level change in options
This commit is contained in:
Alexander Lichter 2018-08-12 11:43:30 +02:00 committed by Clark Du
parent ec52104ec1
commit 04e53b0f9f
1 changed files with 12 additions and 4 deletions

View File

@ -10,9 +10,10 @@ const argv = parseArgs(process.argv.slice(2), {
c: 'config-file',
a: 'analyze',
s: 'spa',
u: 'universal'
u: 'universal',
q: 'quiet'
},
boolean: ['h', 'a', 's', 'u'],
boolean: ['h', 'a', 's', 'u', 'q'],
string: ['c'],
default: {
c: 'nuxt.config.js'
@ -27,10 +28,11 @@ if (argv.help) {
$ nuxt build <dir>
Options
--analyze, -a Launch webpack-bundle-analyzer to optimize your bundles.
--spa Launch in SPA mode
--universal Launch in Universal mode (default)
--spa, -s Launch in SPA mode
--universal, -u Launch in Universal mode (default)
--no-generate Don't generate static version for SPA mode (useful for nuxt start)
--config-file, -c Path to Nuxt.js config file (default: nuxt.config.js)
--quiet, -q Disable output except for errors
--help, -h Displays this message
`)
process.exit(0)
@ -47,6 +49,12 @@ if (argv.analyze && typeof options.build.analyze !== 'object') {
options.build.analyze = true
}
// Silence output when using --quiet
if (argv.quiet) {
options.test = true
consola.level = 0
}
const nuxt = new Nuxt(options)
const builder = new Builder(nuxt)