nx 19.5.0-canary.20240703-4c76b95 → 19.5.0-canary.20240705-653cad2
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/package.json +12 -12
- package/src/command-line/reset/reset.js +1 -1
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.css +1 -1
- package/src/plugins/js/utils/register.js +29 -13
- package/src/project-graph/plugins/internal-api.js +0 -1
- package/src/project-graph/plugins/isolation/plugin-pool.js +1 -1
- package/src/project-graph/utils/project-configuration-utils.d.ts +8 -6
- package/src/project-graph/utils/project-configuration-utils.js +109 -44
- package/src/tasks-runner/utils.js +1 -1
- package/src/utils/nx-plugin.deprecated.js +0 -2
- package/src/plugins/target-defaults/symbols.d.ts +0 -17
- package/src/plugins/target-defaults/symbols.js +0 -20
- package/src/plugins/target-defaults/target-defaults-plugin.d.ts +0 -121
- package/src/plugins/target-defaults/target-defaults-plugin.js +0 -176
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.5.0-canary.
|
3
|
+
"version": "19.5.0-canary.20240705-653cad2",
|
4
4
|
"private": false,
|
5
5
|
"description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
|
6
6
|
"repository": {
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"yargs-parser": "21.1.1",
|
71
71
|
"node-machine-id": "1.1.12",
|
72
72
|
"ora": "5.3.0",
|
73
|
-
"@nrwl/tao": "19.5.0-canary.
|
73
|
+
"@nrwl/tao": "19.5.0-canary.20240705-653cad2"
|
74
74
|
},
|
75
75
|
"peerDependencies": {
|
76
76
|
"@swc-node/register": "^1.8.0",
|
@@ -85,16 +85,16 @@
|
|
85
85
|
}
|
86
86
|
},
|
87
87
|
"optionalDependencies": {
|
88
|
-
"@nx/nx-darwin-x64": "19.5.0-canary.
|
89
|
-
"@nx/nx-darwin-arm64": "19.5.0-canary.
|
90
|
-
"@nx/nx-linux-x64-gnu": "19.5.0-canary.
|
91
|
-
"@nx/nx-linux-x64-musl": "19.5.0-canary.
|
92
|
-
"@nx/nx-win32-x64-msvc": "19.5.0-canary.
|
93
|
-
"@nx/nx-linux-arm64-gnu": "19.5.0-canary.
|
94
|
-
"@nx/nx-linux-arm64-musl": "19.5.0-canary.
|
95
|
-
"@nx/nx-linux-arm-gnueabihf": "19.5.0-canary.
|
96
|
-
"@nx/nx-win32-arm64-msvc": "19.5.0-canary.
|
97
|
-
"@nx/nx-freebsd-x64": "19.5.0-canary.
|
88
|
+
"@nx/nx-darwin-x64": "19.5.0-canary.20240705-653cad2",
|
89
|
+
"@nx/nx-darwin-arm64": "19.5.0-canary.20240705-653cad2",
|
90
|
+
"@nx/nx-linux-x64-gnu": "19.5.0-canary.20240705-653cad2",
|
91
|
+
"@nx/nx-linux-x64-musl": "19.5.0-canary.20240705-653cad2",
|
92
|
+
"@nx/nx-win32-x64-msvc": "19.5.0-canary.20240705-653cad2",
|
93
|
+
"@nx/nx-linux-arm64-gnu": "19.5.0-canary.20240705-653cad2",
|
94
|
+
"@nx/nx-linux-arm64-musl": "19.5.0-canary.20240705-653cad2",
|
95
|
+
"@nx/nx-linux-arm-gnueabihf": "19.5.0-canary.20240705-653cad2",
|
96
|
+
"@nx/nx-win32-arm64-msvc": "19.5.0-canary.20240705-653cad2",
|
97
|
+
"@nx/nx-freebsd-x64": "19.5.0-canary.20240705-653cad2"
|
98
98
|
},
|
99
99
|
"nx-migrations": {
|
100
100
|
"migrations": "./migrations.json",
|
@@ -52,7 +52,7 @@ async function resetHandler(args) {
|
|
52
52
|
await cleanupNativeFileCache();
|
53
53
|
}
|
54
54
|
catch {
|
55
|
-
|
55
|
+
// ignore, deleting the native file cache is not critical and can fail if another process is locking the file
|
56
56
|
}
|
57
57
|
try {
|
58
58
|
await cleanupWorkspaceData();
|