@nrwl/linter 14.7.4 → 14.7.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +1 -1
- package/migrations.json +14 -0
- package/package.json +5 -5
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,6 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
-
## [14.7.
|
6
|
+
## [14.7.5](https://github.com/nrwl/nx/compare/14.7.4...14.7.5) (2022-09-12)
|
7
7
|
|
8
8
|
**Note:** Version bump only for package @nrwl/linter
|
package/migrations.json
CHANGED
@@ -279,6 +279,20 @@
|
|
279
279
|
"version": "~5.33.1"
|
280
280
|
}
|
281
281
|
}
|
282
|
+
},
|
283
|
+
"14.8.0": {
|
284
|
+
"version": "14.8.0-beta.0",
|
285
|
+
"packages": {
|
286
|
+
"@typescript-eslint/parser": {
|
287
|
+
"version": "^5.36.1"
|
288
|
+
},
|
289
|
+
"@typescript-eslint/eslint-plugin": {
|
290
|
+
"version": "^5.36.1"
|
291
|
+
},
|
292
|
+
"@typescript-eslint/utils": {
|
293
|
+
"version": "^5.36.1"
|
294
|
+
}
|
295
|
+
}
|
282
296
|
}
|
283
297
|
}
|
284
298
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nrwl/linter",
|
3
|
-
"version": "14.7.
|
3
|
+
"version": "14.7.5",
|
4
4
|
"description": "The Linter plugin contains executors, generator, plugin and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -33,10 +33,10 @@
|
|
33
33
|
"eslint": "^8.0.0"
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
|
-
"@nrwl/devkit": "14.7.
|
37
|
-
"@nrwl/jest": "14.7.
|
36
|
+
"@nrwl/devkit": "14.7.5",
|
37
|
+
"@nrwl/jest": "14.7.5",
|
38
38
|
"@phenomnomnominal/tsquery": "4.1.1",
|
39
|
-
"nx": "14.7.
|
39
|
+
"nx": "14.7.5",
|
40
40
|
"tmp": "~0.2.1",
|
41
41
|
"tslib": "^2.3.0"
|
42
42
|
},
|
@@ -45,5 +45,5 @@
|
|
45
45
|
"optional": true
|
46
46
|
}
|
47
47
|
},
|
48
|
-
"gitHead": "
|
48
|
+
"gitHead": "42479565e909e97e88293d94ebb8f1932690f82f"
|
49
49
|
}
|
package/src/utils/versions.d.ts
CHANGED
@@ -2,6 +2,6 @@ export declare const nxVersion: any;
|
|
2
2
|
export declare const tslintVersion = "~6.1.0";
|
3
3
|
export declare const tslintToEslintConfigVersion = "^2.13.0";
|
4
4
|
export declare const buildAngularVersion = "~14.2.0";
|
5
|
-
export declare const typescriptESLintVersion = "
|
5
|
+
export declare const typescriptESLintVersion = "^5.36.1";
|
6
6
|
export declare const eslintVersion = "~8.15.0";
|
7
7
|
export declare const eslintConfigPrettierVersion = "8.1.0";
|
package/src/utils/versions.js
CHANGED
@@ -5,7 +5,7 @@ exports.nxVersion = require('../../package.json').version;
|
|
5
5
|
exports.tslintVersion = '~6.1.0';
|
6
6
|
exports.tslintToEslintConfigVersion = '^2.13.0';
|
7
7
|
exports.buildAngularVersion = '~14.2.0';
|
8
|
-
exports.typescriptESLintVersion = '
|
8
|
+
exports.typescriptESLintVersion = '^5.36.1';
|
9
9
|
exports.eslintVersion = '~8.15.0';
|
10
10
|
exports.eslintConfigPrettierVersion = '8.1.0';
|
11
11
|
//# sourceMappingURL=versions.js.map
|