@nrwl/nx-plugin 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 +12 -0
- package/CHANGELOG.md +1 -1
- package/migrations.json +7 -1
- package/package.json +6 -6
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
|
-
|
|
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/nx-plugin
|
package/migrations.json
CHANGED
|
@@ -17,9 +17,15 @@
|
|
|
17
17
|
},
|
|
18
18
|
"add-swc-deps": {
|
|
19
19
|
"cli": "nx",
|
|
20
|
-
"version": "14
|
|
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.
|
|
3
|
+
"version": "14.3.0-beta.1",
|
|
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.
|
|
31
|
-
"@nrwl/jest": "14.
|
|
32
|
-
"@nrwl/js": "14.
|
|
33
|
-
"@nrwl/linter": "14.
|
|
30
|
+
"@nrwl/devkit": "14.3.0-beta.1",
|
|
31
|
+
"@nrwl/jest": "14.3.0-beta.1",
|
|
32
|
+
"@nrwl/js": "14.3.0-beta.1",
|
|
33
|
+
"@nrwl/linter": "14.3.0-beta.1",
|
|
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": "
|
|
40
|
+
"gitHead": "3b3888a2ecd680b16bcad4f91127cfeba65dca9f"
|
|
41
41
|
}
|