Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 75db75e

Browse files
Akryumatinux
authored andcommitted
feat: answers option (#347)
* feat: answers option * chore: new required sao version
1 parent c5e6b9c commit 75db75e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

cli.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ cli
2727
.command('[out-dir]', 'Generate in a custom directory or current directory')
2828
.option('-e, --edge', 'To install `nuxt-edge` instead of `nuxt`')
2929
.option('-i, --info', 'Print out debugging information relating to the local environment')
30+
.option('--answers <json>', 'Skip all the prompts and use the provided answers')
3031
.option('--verbose', 'Show debug logs')
3132
.action((outDir = '.', cliOptions) => {
3233
if (cliOptions.info) {
@@ -36,10 +37,10 @@ cli
3637
console.log(chalk`{cyan create-nuxt-app v${version}}`)
3738
console.log(chalk`✨ Generating Nuxt.js project in {cyan ${outDir}}`)
3839

39-
const { verbose } = cliOptions
40+
const { verbose, answers } = cliOptions
4041
const logLevel = verbose ? 4 : 2
4142
// See https://saojs.org/api.html#standalone-cli
42-
sao({ generator, outDir, logLevel, cliOptions })
43+
sao({ generator, outDir, logLevel, answers, cliOptions })
4344
.run()
4445
.catch((err) => {
4546
console.trace(err)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"envinfo": "^7.3.1",
2626
"glob": "^7.1.4",
2727
"lodash": "^4.17.15",
28-
"sao": "^1.6.1",
28+
"sao": "^1.7.0",
2929
"superb": "^4.0.0",
3030
"validate-npm-package-name": "^3.0.0"
3131
},

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -4672,10 +4672,10 @@ safe-regex@^2.0.1:
46724672
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
46734673
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
46744674

4675-
sao@^1.6.1:
4676-
version "1.6.1"
4677-
resolved "https://registry.yarnpkg.com/sao/-/sao-1.6.1.tgz#74534b9b3df61735243e195635c14e229ea599d5"
4678-
integrity sha512-ZnFCrL1UmyuGL6koFW74oeWDRgm1w93Jv0AXzOo60f9aQbsQAON2xSbxAm8fxgTcxL7grxJnLn7Jy9bQ9Sb2yg==
4675+
sao@^1.7.0:
4676+
version "1.7.0"
4677+
resolved "https://registry.yarnpkg.com/sao/-/sao-1.7.0.tgz#19b61f95c62b3f71550c8d8911c88bb7d9ef49df"
4678+
integrity sha512-5ZJ6C1odSSqdFtgh/gNfwwmTgCTOnbXWQkyAyLv//9uSTsaGVyeVrNa0rS/o32pVSKlmyPg5C10KoGT3+rY1rw==
46794679
dependencies:
46804680
cac "^6.3.8"
46814681
chalk "^2.4.1"

0 commit comments

Comments
 (0)