@nrwl/linter 17.0.0-beta.6 → 17.0.0-beta.8
Sign up to get free protection for your applications and to get access to all the features.
- package/executors.json +5 -5
- package/generators.json +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +3 -3
package/executors.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"builders": {
|
3
3
|
"eslint": {
|
4
|
-
"implementation": "@nx/
|
5
|
-
"schema": "@nx/
|
4
|
+
"implementation": "@nx/eslint/src/executors/lint/compat",
|
5
|
+
"schema": "@nx/eslint/src/executors/lint/schema.json",
|
6
6
|
"description": "Run ESLint on a project."
|
7
7
|
}
|
8
8
|
},
|
9
9
|
"executors": {
|
10
10
|
"eslint": {
|
11
|
-
"implementation": "@nx/
|
12
|
-
"schema": "@nx/
|
13
|
-
"hasher": "@nx/
|
11
|
+
"implementation": "@nx/eslint/src/executors/lint/lint.impl",
|
12
|
+
"schema": "@nx/eslint/src/executors/lint/schema.json",
|
13
|
+
"hasher": "@nx/eslint/src/executors/lint/hasher",
|
14
14
|
"description": "Run ESLint on a project."
|
15
15
|
}
|
16
16
|
}
|
package/generators.json
CHANGED
package/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from '@nx/
|
1
|
+
export * from '@nx/eslint';
|
package/index.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nrwl/linter",
|
3
|
-
"version": "17.0.0-beta.
|
3
|
+
"version": "17.0.0-beta.8",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Linter plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
|
6
6
|
"repository": {
|
@@ -26,13 +26,13 @@
|
|
26
26
|
"builders": "./executors.json",
|
27
27
|
"schematics": "./generators.json",
|
28
28
|
"dependencies": {
|
29
|
-
"@nx/
|
29
|
+
"@nx/eslint": "17.0.0-beta.8"
|
30
30
|
},
|
31
31
|
"publishConfig": {
|
32
32
|
"access": "public"
|
33
33
|
},
|
34
34
|
"nx-migrations": {
|
35
|
-
"migrations": "@nx/
|
35
|
+
"migrations": "@nx/eslint/migrations.json"
|
36
36
|
},
|
37
37
|
"type": "commonjs"
|
38
38
|
}
|