@nrwl/linter 17.0.0-beta.5 → 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 CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "builders": {
3
3
  "eslint": {
4
- "implementation": "@nx/linter/src/executors/eslint/compat",
5
- "schema": "@nx/linter/src/executors/eslint/schema.json",
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/linter/src/executors/eslint/lint.impl",
12
- "schema": "@nx/linter/src/executors/eslint/schema.json",
13
- "hasher": "@nx/linter/src/executors/eslint/hasher",
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
@@ -1,4 +1,4 @@
1
1
  {
2
- "extends": ["@nx/linter"],
2
+ "extends": ["@nx/eslint"],
3
3
  "schematics": {}
4
4
  }
package/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from '@nx/linter';
1
+ export * from '@nx/eslint';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("@nx/linter"), exports);
4
+ tslib_1.__exportStar(require("@nx/eslint"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/linter",
3
- "version": "17.0.0-beta.5",
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/linter": "17.0.0-beta.5"
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/linter/migrations.json"
35
+ "migrations": "@nx/eslint/migrations.json"
36
36
  },
37
37
  "type": "commonjs"
38
38
  }