We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbbd01f commit 8308de9Copy full SHA for 8308de9
1 file changed
lib/ionic/start.js
@@ -10,6 +10,8 @@ var Start = IonicAppLib.start;
10
var log = IonicAppLib.logging.logger;
11
var appLibUtils = IonicAppLib.utils;
12
13
+var StartWizard = IonicAppLib.start_wizard;
14
+
15
var settings = {
16
title: 'start',
17
name: 'start',
@@ -58,7 +60,9 @@ function run(ionic, argv) {
58
60
return templateUtils.listTemplates();
59
61
}
62
- if (argv._.length < 2) {
63
+ if (argv._.length < 2 && StartWizard) {
64
+ return StartWizard.start();
65
+ } else {
66
return appLibUtils.fail('Invalid command', 'start');
67
68
0 commit comments