@nrwl/linter 14.6.0-beta.8 → 14.6.0-rc.1
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 +2 -2
- package/src/utils/versions.js +2 -2
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.6.0-
|
6
|
+
# [14.6.0-rc.1](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-rc.1) (2022-08-30)
|
7
7
|
|
8
8
|
**Note:** Version bump only for package @nrwl/linter
|
package/migrations.json
CHANGED
@@ -265,6 +265,20 @@
|
|
265
265
|
"version": "^5.29.0"
|
266
266
|
}
|
267
267
|
}
|
268
|
+
},
|
269
|
+
"15.6.0": {
|
270
|
+
"version": "15.6.0-beta.0",
|
271
|
+
"packages": {
|
272
|
+
"@typescript-eslint/parser": {
|
273
|
+
"version": "~5.33.1"
|
274
|
+
},
|
275
|
+
"@typescript-eslint/eslint-plugin": {
|
276
|
+
"version": "~5.33.1"
|
277
|
+
},
|
278
|
+
"@typescript-eslint/utils": {
|
279
|
+
"version": "~5.33.1"
|
280
|
+
}
|
281
|
+
}
|
268
282
|
}
|
269
283
|
}
|
270
284
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nrwl/linter",
|
3
|
-
"version": "14.6.0-
|
3
|
+
"version": "14.6.0-rc.1",
|
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.6.0-
|
37
|
-
"@nrwl/jest": "14.6.0-
|
36
|
+
"@nrwl/devkit": "14.6.0-rc.1",
|
37
|
+
"@nrwl/jest": "14.6.0-rc.1",
|
38
38
|
"@phenomnomnominal/tsquery": "4.1.1",
|
39
|
-
"nx": "14.6.0-
|
39
|
+
"nx": "14.6.0-rc.1",
|
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": "b86ace50d30e09f7a11713e2cffe63699995f928"
|
49
49
|
}
|
package/src/utils/versions.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
export declare const nxVersion: any;
|
2
2
|
export declare const tslintVersion = "~6.1.0";
|
3
3
|
export declare const tslintToEslintConfigVersion = "^2.13.0";
|
4
|
-
export declare const buildAngularVersion = "~14.
|
5
|
-
export declare const typescriptESLintVersion = "
|
4
|
+
export declare const buildAngularVersion = "~14.2.0";
|
5
|
+
export declare const typescriptESLintVersion = "~5.33.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
@@ -4,8 +4,8 @@ exports.eslintConfigPrettierVersion = exports.eslintVersion = exports.typescript
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
5
5
|
exports.tslintVersion = '~6.1.0';
|
6
6
|
exports.tslintToEslintConfigVersion = '^2.13.0';
|
7
|
-
exports.buildAngularVersion = '~14.
|
8
|
-
exports.typescriptESLintVersion = '
|
7
|
+
exports.buildAngularVersion = '~14.2.0';
|
8
|
+
exports.typescriptESLintVersion = '~5.33.1';
|
9
9
|
exports.eslintVersion = '~8.15.0';
|
10
10
|
exports.eslintConfigPrettierVersion = '8.1.0';
|
11
11
|
//# sourceMappingURL=versions.js.map
|