@nestjs/cli 8.1.4 → 8.1.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/.circleci/config.yml +2 -2
- package/CONTRIBUTING.md +2 -2
- package/package.json +18 -18
package/.circleci/config.yml
CHANGED
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
build:
|
|
22
22
|
working_directory: ~/nest
|
|
23
23
|
docker:
|
|
24
|
-
- image: circleci/node:
|
|
24
|
+
- image: circleci/node:17
|
|
25
25
|
steps:
|
|
26
26
|
- checkout
|
|
27
27
|
- run:
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
unit_tests:
|
|
44
44
|
working_directory: ~/nest
|
|
45
45
|
docker:
|
|
46
|
-
- image: circleci/node:
|
|
46
|
+
- image: circleci/node:17
|
|
47
47
|
steps:
|
|
48
48
|
- checkout
|
|
49
49
|
- *restore-cache
|
package/CONTRIBUTING.md
CHANGED
|
@@ -48,7 +48,7 @@ We want to fix all the issues as soon as possible, but before fixing a bug we ne
|
|
|
48
48
|
- version of NestJS-CLI used (`nest info`)
|
|
49
49
|
- and most importantly - a use-case that fails
|
|
50
50
|
|
|
51
|
-
Unfortunately, we are not able to investigate / fix bugs without a minimal reproduction, so if we don't hear back from you we are going to close an issue that
|
|
51
|
+
Unfortunately, we are not able to investigate / fix bugs without a minimal reproduction, so if we don't hear back from you we are going to close an issue that doesn't have enough info to be reproduced.
|
|
52
52
|
|
|
53
53
|
You can file new issues by filling out our [new issue form](https://github.com/nestjs/nest/issues/new).
|
|
54
54
|
|
|
@@ -149,7 +149,7 @@ format that includes a **type**, a **scope** and a **subject**:
|
|
|
149
149
|
|
|
150
150
|
The **header** is mandatory and the **scope** of the header is optional.
|
|
151
151
|
|
|
152
|
-
Any line of the commit message cannot be longer 100 characters! This allows the message to be easier
|
|
152
|
+
Any line of the commit message cannot be longer than 100 characters! This allows the message to be easier
|
|
153
153
|
to read on GitHub as well as in various git tools.
|
|
154
154
|
|
|
155
155
|
Footer should contain a [closing reference to an issue](https://help.github.com/articles/closing-issues-via-commit-messages/) if any.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjs/cli",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.5",
|
|
4
4
|
"description": "Nest - modern, fast, powerful node.js web framework (@cli)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/nestjs/nest-cli#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@angular-devkit/core": "
|
|
47
|
-
"@angular-devkit/schematics": "
|
|
48
|
-
"@angular-devkit/schematics-cli": "
|
|
46
|
+
"@angular-devkit/core": "13.0.3",
|
|
47
|
+
"@angular-devkit/schematics": "13.0.3",
|
|
48
|
+
"@angular-devkit/schematics-cli": "13.0.3",
|
|
49
49
|
"@nestjs/schematics": "^8.0.3",
|
|
50
50
|
"chalk": "3.0.0",
|
|
51
51
|
"chokidar": "3.5.2",
|
|
52
52
|
"cli-table3": "0.6.0",
|
|
53
53
|
"commander": "4.1.1",
|
|
54
|
-
"fork-ts-checker-webpack-plugin": "6.
|
|
54
|
+
"fork-ts-checker-webpack-plugin": "6.4.0",
|
|
55
55
|
"inquirer": "7.3.3",
|
|
56
56
|
"node-emoji": "1.11.0",
|
|
57
57
|
"ora": "5.4.1",
|
|
@@ -61,39 +61,39 @@
|
|
|
61
61
|
"source-map-support": "0.5.20",
|
|
62
62
|
"tree-kill": "1.2.2",
|
|
63
63
|
"tsconfig-paths": "3.11.0",
|
|
64
|
-
"tsconfig-paths-webpack-plugin": "3.5.
|
|
64
|
+
"tsconfig-paths-webpack-plugin": "3.5.2",
|
|
65
65
|
"typescript": "4.3.5",
|
|
66
|
-
"webpack": "5.
|
|
66
|
+
"webpack": "5.64.1",
|
|
67
67
|
"webpack-node-externals": "3.0.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@commitlint/cli": "
|
|
71
|
-
"@commitlint/config-angular": "
|
|
70
|
+
"@commitlint/cli": "15.0.0",
|
|
71
|
+
"@commitlint/config-angular": "15.0.0",
|
|
72
72
|
"@types/copyfiles": "2.4.1",
|
|
73
73
|
"@types/inquirer": "7.3.3",
|
|
74
74
|
"@types/jest": "27.0.2",
|
|
75
|
-
"@types/node": "
|
|
75
|
+
"@types/node": "16.11.7",
|
|
76
76
|
"@types/node-emoji": "1.8.1",
|
|
77
77
|
"@types/ora": "3.2.0",
|
|
78
78
|
"@types/os-name": "3.1.0",
|
|
79
79
|
"@types/rimraf": "3.0.2",
|
|
80
80
|
"@types/shelljs": "0.8.9",
|
|
81
81
|
"@types/webpack-node-externals": "2.5.3",
|
|
82
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
83
|
-
"@typescript-eslint/parser": "5.
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "5.4.0",
|
|
83
|
+
"@typescript-eslint/parser": "5.4.0",
|
|
84
84
|
"delete-empty": "3.0.0",
|
|
85
|
-
"eslint": "8.0
|
|
85
|
+
"eslint": "8.2.0",
|
|
86
86
|
"eslint-config-prettier": "8.3.0",
|
|
87
|
-
"eslint-plugin-import": "2.25.
|
|
87
|
+
"eslint-plugin-import": "2.25.3",
|
|
88
88
|
"gulp": "4.0.2",
|
|
89
89
|
"gulp-clean": "0.4.0",
|
|
90
|
-
"husky": "7.0.
|
|
91
|
-
"jest": "27.3.
|
|
90
|
+
"husky": "7.0.4",
|
|
91
|
+
"jest": "27.3.1",
|
|
92
92
|
"prettier": "2.4.1",
|
|
93
|
-
"release-it": "14.11.
|
|
93
|
+
"release-it": "14.11.7",
|
|
94
94
|
"ts-jest": "27.0.7",
|
|
95
95
|
"ts-loader": "9.2.6",
|
|
96
|
-
"ts-node": "10.
|
|
96
|
+
"ts-node": "10.4.0"
|
|
97
97
|
},
|
|
98
98
|
"husky": {
|
|
99
99
|
"hooks": {
|