nx 20.1.0-canary.20241107-fd2e8d0 → 20.1.0-canary.20241109-77d6704
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/core/graph/main.js +1 -1
- package/src/core/graph/styles.css +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/project-graph/plugins/internal-api.d.ts +0 -4
- package/src/project-graph/plugins/internal-api.js +1 -6
- package/src/project-graph/plugins/isolation/messaging.d.ts +1 -5
- package/src/project-graph/plugins/isolation/plugin-pool.js +0 -22
- package/src/project-graph/plugins/isolation/plugin-worker.js +16 -15
- package/src/tasks-runner/create-task-graph.js +1 -1
- package/src/tasks-runner/run-command.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.1.0-canary.
|
3
|
+
"version": "20.1.0-canary.20241109-77d6704",
|
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": {
|
@@ -80,16 +80,16 @@
|
|
80
80
|
}
|
81
81
|
},
|
82
82
|
"optionalDependencies": {
|
83
|
-
"@nx/nx-darwin-x64": "20.1.0-canary.
|
84
|
-
"@nx/nx-darwin-arm64": "20.1.0-canary.
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.1.0-canary.
|
86
|
-
"@nx/nx-linux-x64-musl": "20.1.0-canary.
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.1.0-canary.
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.1.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.1.0-canary.
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.1.0-canary.
|
92
|
-
"@nx/nx-freebsd-x64": "20.1.0-canary.
|
83
|
+
"@nx/nx-darwin-x64": "20.1.0-canary.20241109-77d6704",
|
84
|
+
"@nx/nx-darwin-arm64": "20.1.0-canary.20241109-77d6704",
|
85
|
+
"@nx/nx-linux-x64-gnu": "20.1.0-canary.20241109-77d6704",
|
86
|
+
"@nx/nx-linux-x64-musl": "20.1.0-canary.20241109-77d6704",
|
87
|
+
"@nx/nx-win32-x64-msvc": "20.1.0-canary.20241109-77d6704",
|
88
|
+
"@nx/nx-linux-arm64-gnu": "20.1.0-canary.20241109-77d6704",
|
89
|
+
"@nx/nx-linux-arm64-musl": "20.1.0-canary.20241109-77d6704",
|
90
|
+
"@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.20241109-77d6704",
|
91
|
+
"@nx/nx-win32-arm64-msvc": "20.1.0-canary.20241109-77d6704",
|
92
|
+
"@nx/nx-freebsd-x64": "20.1.0-canary.20241109-77d6704"
|
93
93
|
},
|
94
94
|
"nx-migrations": {
|
95
95
|
"migrations": "./migrations.json",
|
@@ -160,9 +160,9 @@
|
|
160
160
|
"x86_64-unknown-freebsd"
|
161
161
|
]
|
162
162
|
},
|
163
|
+
"types": "./bin/nx.d.ts",
|
163
164
|
"main": "./bin/nx.js",
|
164
165
|
"type": "commonjs",
|
165
|
-
"types": "./bin/nx.d.ts",
|
166
166
|
"scripts": {
|
167
167
|
"postinstall": "node ./bin/post-install"
|
168
168
|
}
|