zerostart-cli 0.0.31 → 0.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/cli.js +3 -1
- package/package.json +1 -1
package/out/cli.js
CHANGED
|
@@ -83,7 +83,7 @@ function showGitHubTokenHelp() {
|
|
|
83
83
|
program
|
|
84
84
|
.name('zerostart')
|
|
85
85
|
.description('Create and deploy a complete project with one command')
|
|
86
|
-
.version('0.0.
|
|
86
|
+
.version('0.0.32');
|
|
87
87
|
program
|
|
88
88
|
.command('deploy-vercel')
|
|
89
89
|
.description('Deploy the current project to Vercel')
|
|
@@ -391,6 +391,8 @@ program
|
|
|
391
391
|
answers[step.id] = value;
|
|
392
392
|
stepIndex++;
|
|
393
393
|
}
|
|
394
|
+
// Sync the name back in case it was set in the wizard
|
|
395
|
+
name = answers.name;
|
|
394
396
|
// Normalizing answers for later logic
|
|
395
397
|
const normalizedAnswers = {
|
|
396
398
|
...answers,
|