create-next2d-app 1.0.6 → 1.0.7

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 (3) hide show
  1. package/README.md +2 -2
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -22,9 +22,9 @@ npm start
22
22
  npm start
23
23
  ```
24
24
 
25
- * Bundles the app into static files for develop.
25
+ * Generate the necessary View and ViewModel classes from the routing JSON file.
26
26
  ```sh
27
- npm run build
27
+ npm run generate
28
28
  ```
29
29
 
30
30
  * Bundles the app into static files for production.
package/index.js CHANGED
@@ -282,8 +282,8 @@ const install = function (root, app_name, template, dependencies)
282
282
  console.log(" Starts the development server.");
283
283
 
284
284
  console.log();
285
- console.log(` ${chalk.green("npm run build")}`);
286
- console.log(" Bundles the app into static files for develop.");
285
+ console.log(` ${chalk.green("npm run generate")}`);
286
+ console.log(" Generate the necessary View and ViewModel classes from the routing JSON file.");
287
287
 
288
288
  console.log();
289
289
  console.log(` ${chalk.green("npm run build --env=\"prd\"")}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-next2d-app",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Create Next2D apps with no build configuration.",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp>",
6
6
  "license": "MIT",