clwy-express-generator 5.0.3 → 5.0.5

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 CHANGED
@@ -24,7 +24,7 @@ The quickest way to get started with express is to utilize the executable `expre
24
24
  Create the app:
25
25
 
26
26
  ```bash
27
- $ npx clwy-express-generator --es6 es6-demo && cd es6-demo
27
+ $ npx clwy-express-generator --view=ejs --es6 es6-demo && cd es6-demo
28
28
  ```
29
29
 
30
30
  Install dependencies:
@@ -72,7 +72,7 @@ Forked from [express-generator](https://github.com/expressjs/generator),此项
72
72
  创建应用:
73
73
 
74
74
  ```bash
75
- $ npx clwy-express-generator --es6 es6-demo && cd es6-demo
75
+ $ npx clwy-express-generator --view=ejs --es6 es6-demo && cd es6-demo
76
76
  ```
77
77
 
78
78
  安装依赖:
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "clwy-express-generator",
3
3
  "description": "Express' application generator",
4
4
  "homepage": "https://github.com/clwy-cn/clwy-express-generator",
5
- "version": "5.0.3",
5
+ "version": "5.0.5",
6
6
  "author": "TJ Holowaychuk <tj@vision-media.ca>",
7
7
  "contributors": [
8
8
  "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
@@ -1,4 +1,5 @@
1
1
  import express from 'express';
2
+
2
3
  const router = express.Router();
3
4
 
4
5
  /* GET home page. */
@@ -1,4 +1,5 @@
1
1
  import express from 'express';
2
+
2
3
  const router = express.Router();
3
4
 
4
5
  /* GET users listing. */