create-quapp 1.0.1 → 1.0.2
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -217,11 +217,12 @@ try {
|
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
console.log('\n');
|
|
220
|
+
console.log(yellow(`Now run the following commands to start your project:\n\n`));
|
|
220
221
|
console.log(boldBlue(` cd ${projectName}`));
|
|
221
222
|
if (!doInstall) {
|
|
222
223
|
console.log(boldBlue(' npm install'));
|
|
223
224
|
}
|
|
224
|
-
console.log(boldBlue(' npm
|
|
225
|
+
console.log(boldBlue(' npm run dev\n'));
|
|
225
226
|
|
|
226
227
|
cleanupInput();
|
|
227
228
|
setTimeout(() => process.exit(0), 100);
|