mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
feat(cli): add --quiet
option to nuxt generate command (#5357)
This commit is contained in:
parent
2d73e8aeba
commit
91f4eb0468
@ -25,6 +25,18 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
quiet: {
|
||||||
|
alias: 'q',
|
||||||
|
type: 'boolean',
|
||||||
|
description: 'Disable output except for errors',
|
||||||
|
prepare(cmd, options, argv) {
|
||||||
|
// Silence output when using --quiet
|
||||||
|
options.build = options.build || {}
|
||||||
|
if (argv.quiet) {
|
||||||
|
options.build.quiet = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
modern: {
|
modern: {
|
||||||
...common.modern,
|
...common.modern,
|
||||||
description: 'Generate app in modern build (modern mode can be only client)',
|
description: 'Generate app in modern build (modern mode can be only client)',
|
||||||
|
Loading…
Reference in New Issue
Block a user