@nx/eslint 20.4.0-canary.20250115-0ae8665 → 20.4.0-canary.20250117-cba25da
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/migrations.json +40 -0
- package/package.json +4 -4
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/migrations.json
CHANGED
@@ -106,6 +106,46 @@
|
|
106
106
|
"version": "^7.16.0"
|
107
107
|
}
|
108
108
|
}
|
109
|
+
},
|
110
|
+
"20.4.0-typescript-eslint": {
|
111
|
+
"version": "20.4.0-beta.1",
|
112
|
+
"requires": {
|
113
|
+
"typescript-eslint": ">8.0.0 <8.19.0"
|
114
|
+
},
|
115
|
+
"packages": {
|
116
|
+
"typescript-eslint": {
|
117
|
+
"version": "^8.19.0"
|
118
|
+
},
|
119
|
+
"@typescript-eslint/parser": {
|
120
|
+
"version": "^8.19.0"
|
121
|
+
},
|
122
|
+
"@typescript-eslint/eslint-plugin": {
|
123
|
+
"version": "^8.19.0"
|
124
|
+
},
|
125
|
+
"@typescript-eslint/utils": {
|
126
|
+
"version": "^8.19.0"
|
127
|
+
}
|
128
|
+
}
|
129
|
+
},
|
130
|
+
"20.4.0-@typescript-eslint": {
|
131
|
+
"version": "20.4.0-beta.1",
|
132
|
+
"requires": {
|
133
|
+
"@typescript-eslint/eslint-plugin": ">8.0.0 <8.19.0"
|
134
|
+
},
|
135
|
+
"packages": {
|
136
|
+
"typescript-eslint": {
|
137
|
+
"version": "^8.19.0"
|
138
|
+
},
|
139
|
+
"@typescript-eslint/parser": {
|
140
|
+
"version": "^8.19.0"
|
141
|
+
},
|
142
|
+
"@typescript-eslint/eslint-plugin": {
|
143
|
+
"version": "^8.19.0"
|
144
|
+
},
|
145
|
+
"@typescript-eslint/utils": {
|
146
|
+
"version": "^8.19.0"
|
147
|
+
}
|
148
|
+
}
|
109
149
|
}
|
110
150
|
}
|
111
151
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/eslint",
|
3
|
-
"version": "20.4.0-canary.
|
3
|
+
"version": "20.4.0-canary.20250117-cba25da",
|
4
4
|
"private": false,
|
5
5
|
"description": "The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
|
6
6
|
"repository": {
|
@@ -35,11 +35,11 @@
|
|
35
35
|
"eslint": "^8.0.0 || ^9.0.0"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
|
-
"@nx/devkit": "20.4.0-canary.
|
39
|
-
"@nx/js": "20.4.0-canary.
|
38
|
+
"@nx/devkit": "20.4.0-canary.20250117-cba25da",
|
39
|
+
"@nx/js": "20.4.0-canary.20250117-cba25da",
|
40
40
|
"semver": "^7.5.3",
|
41
41
|
"tslib": "^2.3.0",
|
42
|
-
"typescript": "~5.
|
42
|
+
"typescript": "~5.7.2"
|
43
43
|
},
|
44
44
|
"peerDependenciesMeta": {
|
45
45
|
"@zkochan/js-yaml": {
|
package/src/utils/versions.d.ts
CHANGED
@@ -3,6 +3,6 @@ export declare const eslintVersion = "~8.57.0";
|
|
3
3
|
export declare const eslintrcVersion = "^2.1.1";
|
4
4
|
export declare const eslintConfigPrettierVersion = "^9.0.0";
|
5
5
|
export declare const typescriptESLintVersion = "^7.16.0";
|
6
|
-
export declare const eslint9__typescriptESLintVersion = "^8.
|
6
|
+
export declare const eslint9__typescriptESLintVersion = "^8.19.0";
|
7
7
|
export declare const eslint9__eslintVersion = "^9.8.0";
|
8
8
|
export declare const eslintCompat = "^1.1.1";
|
package/src/utils/versions.js
CHANGED
@@ -7,6 +7,6 @@ exports.eslintrcVersion = '^2.1.1';
|
|
7
7
|
exports.eslintConfigPrettierVersion = '^9.0.0';
|
8
8
|
exports.typescriptESLintVersion = '^7.16.0';
|
9
9
|
// Updated linting stack for ESLint v9, typescript-eslint v8
|
10
|
-
exports.eslint9__typescriptESLintVersion = '^8.
|
10
|
+
exports.eslint9__typescriptESLintVersion = '^8.19.0';
|
11
11
|
exports.eslint9__eslintVersion = '^9.8.0';
|
12
12
|
exports.eslintCompat = '^1.1.1';
|