nx 20.5.0-canary.20250219-51a0bae → 20.5.0-canary.20250220-320536b
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 +11 -11
- package/src/config/nx-json.d.ts +1 -1
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/daemon/server/server.js +1 -0
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/plugins/js/lock-file/lock-file.js +28 -13
- package/src/plugins/js/project-graph/affected/lock-file-changes.js +1 -0
- package/src/tasks-runner/run-command.js +2 -3
- package/src/utils/command-line-utils.d.ts +1 -1
- package/src/utils/package-manager.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.5.0-canary.
|
3
|
+
"version": "20.5.0-canary.20250220-320536b",
|
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": {
|
@@ -82,16 +82,16 @@
|
|
82
82
|
}
|
83
83
|
},
|
84
84
|
"optionalDependencies": {
|
85
|
-
"@nx/nx-darwin-arm64": "20.5.0-canary.
|
86
|
-
"@nx/nx-darwin-x64": "20.5.0-canary.
|
87
|
-
"@nx/nx-freebsd-x64": "20.5.0-canary.
|
88
|
-
"@nx/nx-linux-arm-gnueabihf": "20.5.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-gnu": "20.5.0-canary.
|
90
|
-
"@nx/nx-linux-arm64-musl": "20.5.0-canary.
|
91
|
-
"@nx/nx-linux-x64-gnu": "20.5.0-canary.
|
92
|
-
"@nx/nx-linux-x64-musl": "20.5.0-canary.
|
93
|
-
"@nx/nx-win32-arm64-msvc": "20.5.0-canary.
|
94
|
-
"@nx/nx-win32-x64-msvc": "20.5.0-canary.
|
85
|
+
"@nx/nx-darwin-arm64": "20.5.0-canary.20250220-320536b",
|
86
|
+
"@nx/nx-darwin-x64": "20.5.0-canary.20250220-320536b",
|
87
|
+
"@nx/nx-freebsd-x64": "20.5.0-canary.20250220-320536b",
|
88
|
+
"@nx/nx-linux-arm-gnueabihf": "20.5.0-canary.20250220-320536b",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "20.5.0-canary.20250220-320536b",
|
90
|
+
"@nx/nx-linux-arm64-musl": "20.5.0-canary.20250220-320536b",
|
91
|
+
"@nx/nx-linux-x64-gnu": "20.5.0-canary.20250220-320536b",
|
92
|
+
"@nx/nx-linux-x64-musl": "20.5.0-canary.20250220-320536b",
|
93
|
+
"@nx/nx-win32-arm64-msvc": "20.5.0-canary.20250220-320536b",
|
94
|
+
"@nx/nx-win32-x64-msvc": "20.5.0-canary.20250220-320536b"
|
95
95
|
},
|
96
96
|
"nx-migrations": {
|
97
97
|
"migrations": "./migrations.json",
|
package/src/config/nx-json.d.ts
CHANGED
@@ -376,7 +376,7 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
|
|
376
376
|
appsDir?: string;
|
377
377
|
};
|
378
378
|
/**
|
379
|
-
* @deprecated Custom task runners will
|
379
|
+
* @deprecated Custom task runners will be replaced by a new API starting with Nx 21. More info: https://nx.dev/deprecated/custom-tasks-runner
|
380
380
|
* Available Task Runners for Nx to use
|
381
381
|
*/
|
382
382
|
tasksRunnerOptions?: {
|