@nrwl/nx-plugin 14.2.4 → 14.3.0-beta.2

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
@@ -27,6 +27,18 @@
27
27
  "@nrwl/workspace"
28
28
  ]
29
29
  }
30
+ },
31
+ {
32
+ "files": [
33
+ "./package.json",
34
+ "./generators.json",
35
+ "./executors.json",
36
+ "./migrations.json"
37
+ ],
38
+ "parser": "jsonc-eslint-parser",
39
+ "rules": {
40
+ "@nrwl/nx/nx-plugin-checks": "error"
41
+ }
30
42
  }
31
43
  ]
32
44
  }
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.4](https://github.com/nrwl/nx/compare/14.2.2...14.2.4) (2022-06-09)
6
+ # [14.3.0-beta.2](https://github.com/nrwl/nx/compare/14.2.2...14.3.0-beta.2) (2022-06-11)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/nx-plugin
package/migrations.json CHANGED
@@ -17,9 +17,15 @@
17
17
  },
18
18
  "add-swc-deps": {
19
19
  "cli": "nx",
20
- "version": "14-1-9-beta.0",
20
+ "version": "14.1.9-beta.0",
21
21
  "description": "Adds @swc/core and @swc-node as a dev dep if you are using them",
22
22
  "factory": "./src/migrations/update-14-1-9/add-swc-deps-if-needed"
23
+ },
24
+ "add-swc-deps-again": {
25
+ "cli": "nx",
26
+ "version": "14.2.3-beta.0",
27
+ "description": "Adds @swc/core and @swc-node as a dev dep if you are using them (repeated due to bad version on earlier migration)",
28
+ "factory": "./src/migrations/update-14-1-9/add-swc-deps-if-needed"
23
29
  }
24
30
  }
25
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/nx-plugin",
3
- "version": "14.2.4",
3
+ "version": "14.3.0-beta.2",
4
4
  "description": "Plugin for creating plugins for Nx :)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,15 +27,15 @@
27
27
  "migrations": "./migrations.json"
28
28
  },
29
29
  "dependencies": {
30
- "@nrwl/devkit": "14.2.4",
31
- "@nrwl/jest": "14.2.4",
32
- "@nrwl/js": "14.2.4",
33
- "@nrwl/linter": "14.2.4",
30
+ "@nrwl/devkit": "14.3.0-beta.2",
31
+ "@nrwl/jest": "14.3.0-beta.2",
32
+ "@nrwl/js": "14.3.0-beta.2",
33
+ "@nrwl/linter": "14.3.0-beta.2",
34
34
  "fs-extra": "^10.1.0",
35
35
  "rxjs": "^6.5.4",
36
36
  "semver": "7.3.4",
37
37
  "tslib": "^2.3.0"
38
38
  },
39
39
  "typings": "./index.d.ts",
40
- "gitHead": "3e3ab094cf1a7cc7c126919622cc7dac011ddd97"
40
+ "gitHead": "0fd3281d3c7dc7c086adfe754ce1be85b0f890bb"
41
41
  }