@nrwl/linter 14.2.3 → 14.3.0-beta.1

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/.eslintrc.json CHANGED
@@ -12,6 +12,18 @@
12
12
  "rules": {
13
13
  "no-restricted-imports": ["error", "@nrwl/workspace"]
14
14
  }
15
+ },
16
+ {
17
+ "files": [
18
+ "./package.json",
19
+ "./generators.json",
20
+ "./executors.json",
21
+ "./migrations.json"
22
+ ],
23
+ "parser": "jsonc-eslint-parser",
24
+ "rules": {
25
+ "@nrwl/nx/nx-plugin-checks": "error"
26
+ }
15
27
  }
16
28
  ],
17
29
  "ignorePatterns": ["!**/*"]
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.2.3](https://github.com/nrwl/nx/compare/14.2.2...14.2.3) (2022-06-09)
6
+ # [14.3.0-beta.1](https://github.com/nrwl/nx/compare/14.2.2...14.3.0-beta.1) (2022-06-10)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/linter
package/migrations.json CHANGED
@@ -67,9 +67,15 @@
67
67
  },
68
68
  "add-swc-deps": {
69
69
  "cli": "nx",
70
- "version": "14-1-9-beta.0",
70
+ "version": "14.1.9-beta.0",
71
71
  "description": "Adds @swc/core and @swc-node as a dev dep if you are using them",
72
72
  "factory": "./src/migrations/update-14-1-9/add-swc-deps-if-needed"
73
+ },
74
+ "add-swc-deps-again": {
75
+ "cli": "nx",
76
+ "version": "14.2.3-beta.0",
77
+ "description": "Adds @swc/core and @swc-node as a dev dep if you are using them (repeated due to prior mistake)",
78
+ "factory": "./src/migrations/update-14-1-9/add-swc-deps-if-needed"
73
79
  }
74
80
  },
75
81
  "packageJsonUpdates": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/linter",
3
- "version": "14.2.3",
3
+ "version": "14.3.0-beta.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.2.3",
37
- "@nrwl/jest": "14.2.3",
36
+ "@nrwl/devkit": "14.3.0-beta.1",
37
+ "@nrwl/jest": "14.3.0-beta.1",
38
38
  "@phenomnomnominal/tsquery": "4.1.1",
39
- "nx": "14.2.3",
39
+ "nx": "14.3.0-beta.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": "48246e8ba71770e0903774e513d528447af944d3"
48
+ "gitHead": "3b3888a2ecd680b16bcad4f91127cfeba65dca9f"
49
49
  }