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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. 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 quapp serve or quapp serve\n'));
225
+ console.log(boldBlue(' npm run dev\n'));
225
226
 
226
227
  cleanupInput();
227
228
  setTimeout(() => process.exit(0), 100);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quapp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Quapp Development tool of the future",
5
5
  "main": "index.js",
6
6
  "type": "module",