clwy-express-generator 5.0.2 → 5.0.3
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/package.json +3 -3
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 --
|
|
27
|
+
$ npx clwy-express-generator --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 --
|
|
75
|
+
$ npx clwy-express-generator --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.
|
|
5
|
+
"version": "5.0.3",
|
|
6
6
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"repository": "expressjs/generator",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"ejs": "
|
|
30
|
+
"ejs": "3.1.10",
|
|
31
31
|
"minimatch": "3.0.4",
|
|
32
32
|
"minimist": "1.2.5",
|
|
33
33
|
"mkdirp": "0.5.1",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"main": "bin/express-cli.js",
|
|
37
37
|
"preferGlobal": true,
|
|
38
38
|
"bin": {
|
|
39
|
-
"express": "./bin/express-cli.js"
|
|
39
|
+
"clwy-express": "./bin/express-cli.js"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"eslint": "7.32.0",
|