nx 19.5.0-canary.20240713-6f50d9f → 19.5.0-canary.20240716-34da542
Sign up to get free protection for your applications and to get access to all the features.
package/README.md
CHANGED
@@ -59,7 +59,7 @@ npx nx@latest init
|
|
59
59
|
- [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
|
60
60
|
- [Intro to Nx](https://nx.dev/getting-started/intro)
|
61
61
|
- [Official Nx YouTube Channel](https://www.youtube.com/@NxDevtools)
|
62
|
-
- [Blog Posts About Nx](https://
|
62
|
+
- [Blog Posts About Nx](https://nx.dev/blog)
|
63
63
|
|
64
64
|
<p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
|
65
65
|
width="100%" alt="Nx - Smart Monorepos · Fast CI"></a></p>
|
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.20240716-34da542",
|
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": {
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"yargs-parser": "21.1.1",
|
72
72
|
"node-machine-id": "1.1.12",
|
73
73
|
"ora": "5.3.0",
|
74
|
-
"@nrwl/tao": "19.5.0-canary.
|
74
|
+
"@nrwl/tao": "19.5.0-canary.20240716-34da542"
|
75
75
|
},
|
76
76
|
"peerDependencies": {
|
77
77
|
"@swc-node/register": "^1.8.0",
|
@@ -86,16 +86,16 @@
|
|
86
86
|
}
|
87
87
|
},
|
88
88
|
"optionalDependencies": {
|
89
|
-
"@nx/nx-darwin-x64": "19.5.0-canary.
|
90
|
-
"@nx/nx-darwin-arm64": "19.5.0-canary.
|
91
|
-
"@nx/nx-linux-x64-gnu": "19.5.0-canary.
|
92
|
-
"@nx/nx-linux-x64-musl": "19.5.0-canary.
|
93
|
-
"@nx/nx-win32-x64-msvc": "19.5.0-canary.
|
94
|
-
"@nx/nx-linux-arm64-gnu": "19.5.0-canary.
|
95
|
-
"@nx/nx-linux-arm64-musl": "19.5.0-canary.
|
96
|
-
"@nx/nx-linux-arm-gnueabihf": "19.5.0-canary.
|
97
|
-
"@nx/nx-win32-arm64-msvc": "19.5.0-canary.
|
98
|
-
"@nx/nx-freebsd-x64": "19.5.0-canary.
|
89
|
+
"@nx/nx-darwin-x64": "19.5.0-canary.20240716-34da542",
|
90
|
+
"@nx/nx-darwin-arm64": "19.5.0-canary.20240716-34da542",
|
91
|
+
"@nx/nx-linux-x64-gnu": "19.5.0-canary.20240716-34da542",
|
92
|
+
"@nx/nx-linux-x64-musl": "19.5.0-canary.20240716-34da542",
|
93
|
+
"@nx/nx-win32-x64-msvc": "19.5.0-canary.20240716-34da542",
|
94
|
+
"@nx/nx-linux-arm64-gnu": "19.5.0-canary.20240716-34da542",
|
95
|
+
"@nx/nx-linux-arm64-musl": "19.5.0-canary.20240716-34da542",
|
96
|
+
"@nx/nx-linux-arm-gnueabihf": "19.5.0-canary.20240716-34da542",
|
97
|
+
"@nx/nx-win32-arm64-msvc": "19.5.0-canary.20240716-34da542",
|
98
|
+
"@nx/nx-freebsd-x64": "19.5.0-canary.20240716-34da542"
|
99
99
|
},
|
100
100
|
"nx-migrations": {
|
101
101
|
"migrations": "./migrations.json",
|
Binary file
|
@@ -762,9 +762,14 @@ function resolveCommandSyntacticSugar(target, key) {
|
|
762
762
|
* @returns The normalized target configuration
|
763
763
|
*/
|
764
764
|
function normalizeTarget(target, project) {
|
765
|
+
target = {
|
766
|
+
...target,
|
767
|
+
configurations: {
|
768
|
+
...target.configurations,
|
769
|
+
},
|
770
|
+
};
|
765
771
|
target = resolveCommandSyntacticSugar(target, project.root);
|
766
772
|
target.options = resolveNxTokensInOptions(target.options, project, `${project.root}:${target}`);
|
767
|
-
target.configurations ??= {};
|
768
773
|
for (const configuration in target.configurations) {
|
769
774
|
target.configurations[configuration] = resolveNxTokensInOptions(target.configurations[configuration], project, `${project.root}:${target}:${configuration}`);
|
770
775
|
}
|