nx 20.2.0-canary.20241204-75b2080 → 20.2.0-canary.20241205-15060e3
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/command-line/release/utils/github.d.ts +1 -0
- package/src/command-line/release/utils/github.js +2 -0
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/project-graph/plugins/get-plugins.js +8 -2
- package/src/project-graph/plugins/isolation/messaging.d.ts +3 -0
- package/src/project-graph/plugins/isolation/plugin-pool.js +5 -1
- package/src/project-graph/plugins/isolation/plugin-worker.js +9 -4
- package/src/project-graph/plugins/load-resolved-plugin.d.ts +3 -0
- package/src/project-graph/plugins/load-resolved-plugin.js +19 -0
- package/src/project-graph/plugins/loader.d.ts +6 -0
- package/src/project-graph/plugins/loader.js +22 -31
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.2.0-canary.
|
3
|
+
"version": "20.2.0-canary.20241205-15060e3",
|
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.2.0-canary.
|
84
|
-
"@nx/nx-darwin-arm64": "20.2.0-canary.
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.2.0-canary.
|
86
|
-
"@nx/nx-linux-x64-musl": "20.2.0-canary.
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.2.0-canary.
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.2.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.2.0-canary.
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.2.0-canary.
|
92
|
-
"@nx/nx-freebsd-x64": "20.2.0-canary.
|
83
|
+
"@nx/nx-darwin-x64": "20.2.0-canary.20241205-15060e3",
|
84
|
+
"@nx/nx-darwin-arm64": "20.2.0-canary.20241205-15060e3",
|
85
|
+
"@nx/nx-linux-x64-gnu": "20.2.0-canary.20241205-15060e3",
|
86
|
+
"@nx/nx-linux-x64-musl": "20.2.0-canary.20241205-15060e3",
|
87
|
+
"@nx/nx-win32-x64-msvc": "20.2.0-canary.20241205-15060e3",
|
88
|
+
"@nx/nx-linux-arm64-gnu": "20.2.0-canary.20241205-15060e3",
|
89
|
+
"@nx/nx-linux-arm64-musl": "20.2.0-canary.20241205-15060e3",
|
90
|
+
"@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.20241205-15060e3",
|
91
|
+
"@nx/nx-win32-arm64-msvc": "20.2.0-canary.20241205-15060e3",
|
92
|
+
"@nx/nx-freebsd-x64": "20.2.0-canary.20241205-15060e3"
|
93
93
|
},
|
94
94
|
"nx-migrations": {
|
95
95
|
"migrations": "./migrations.json",
|
@@ -209,6 +209,8 @@ async function syncGithubRelease(githubRequestConfig, release, existingGithubRel
|
|
209
209
|
name: release.version,
|
210
210
|
body: release.body,
|
211
211
|
prerelease: release.prerelease,
|
212
|
+
// legacy specifies that the latest release should be determined based on the release creation date and higher semantic version.
|
213
|
+
make_latest: 'legacy',
|
212
214
|
};
|
213
215
|
try {
|
214
216
|
const newGhRelease = await (existingGithubReleaseForVersion
|