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.
- package/README.md +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,9 +22,9 @@ npm start
|
|
|
22
22
|
npm start
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
*
|
|
25
|
+
* Generate the necessary View and ViewModel classes from the routing JSON file.
|
|
26
26
|
```sh
|
|
27
|
-
npm run
|
|
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
|
|
286
|
-
console.log("
|
|
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\"")}`);
|