gorig-cli 1.0.9 → 1.0.10
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/commands/init.js +2 -2
- package/package.json +1 -1
package/commands/init.js
CHANGED
|
@@ -81,8 +81,8 @@ const askStartConfirmation = () => {
|
|
|
81
81
|
// 设置5秒超时
|
|
82
82
|
const timeout = setTimeout(() => {
|
|
83
83
|
rl.close();
|
|
84
|
-
resolve(
|
|
85
|
-
},
|
|
84
|
+
resolve(true);
|
|
85
|
+
}, 6000);
|
|
86
86
|
|
|
87
87
|
rl.question('\nDo you want to start the project now? (y/N): ', (answer) => {
|
|
88
88
|
clearTimeout(timeout);
|