nx 19.7.0-canary.20240817-b91d788 → 19.7.0-canary.20240821-2065033
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/README.md +1 -1
- package/package.json +12 -12
- package/src/command-line/import/utils/prepare-source-repo.js +2 -2
- package/src/core/graph/main.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/plugins/js/package-json/create-package-json.d.ts +1 -0
- package/src/plugins/js/package-json/create-package-json.js +1 -1
- package/src/utils/git-utils.js +1 -1
package/README.md
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# Nx: Smart Monorepos · Fast CI
|
24
24
|
|
25
|
-
Nx is a build system
|
25
|
+
Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
|
26
26
|
|
27
27
|
## Getting Started
|
28
28
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.7.0-canary.
|
3
|
+
"version": "19.7.0-canary.20240821-2065033",
|
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.7.0-canary.
|
74
|
+
"@nrwl/tao": "19.7.0-canary.20240821-2065033"
|
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.7.0-canary.
|
90
|
-
"@nx/nx-darwin-arm64": "19.7.0-canary.
|
91
|
-
"@nx/nx-linux-x64-gnu": "19.7.0-canary.
|
92
|
-
"@nx/nx-linux-x64-musl": "19.7.0-canary.
|
93
|
-
"@nx/nx-win32-x64-msvc": "19.7.0-canary.
|
94
|
-
"@nx/nx-linux-arm64-gnu": "19.7.0-canary.
|
95
|
-
"@nx/nx-linux-arm64-musl": "19.7.0-canary.
|
96
|
-
"@nx/nx-linux-arm-gnueabihf": "19.7.0-canary.
|
97
|
-
"@nx/nx-win32-arm64-msvc": "19.7.0-canary.
|
98
|
-
"@nx/nx-freebsd-x64": "19.7.0-canary.
|
89
|
+
"@nx/nx-darwin-x64": "19.7.0-canary.20240821-2065033",
|
90
|
+
"@nx/nx-darwin-arm64": "19.7.0-canary.20240821-2065033",
|
91
|
+
"@nx/nx-linux-x64-gnu": "19.7.0-canary.20240821-2065033",
|
92
|
+
"@nx/nx-linux-x64-musl": "19.7.0-canary.20240821-2065033",
|
93
|
+
"@nx/nx-win32-x64-msvc": "19.7.0-canary.20240821-2065033",
|
94
|
+
"@nx/nx-linux-arm64-gnu": "19.7.0-canary.20240821-2065033",
|
95
|
+
"@nx/nx-linux-arm64-musl": "19.7.0-canary.20240821-2065033",
|
96
|
+
"@nx/nx-linux-arm-gnueabihf": "19.7.0-canary.20240821-2065033",
|
97
|
+
"@nx/nx-win32-arm64-msvc": "19.7.0-canary.20240821-2065033",
|
98
|
+
"@nx/nx-freebsd-x64": "19.7.0-canary.20240821-2065033"
|
99
99
|
},
|
100
100
|
"nx-migrations": {
|
101
101
|
"migrations": "./migrations.json",
|
@@ -61,7 +61,7 @@ async function prepareSourceRepo(gitClient, ref, source, relativeDestination, te
|
|
61
61
|
await (0, promises_1.rm)(destinationInSource, {
|
62
62
|
recursive: true,
|
63
63
|
});
|
64
|
-
await gitClient.commit(
|
64
|
+
await gitClient.commit(`chore(repo): move ${source} to ${relativeDestination} to prepare to be imported`);
|
65
65
|
needsSquash = true;
|
66
66
|
}
|
67
67
|
catch { }
|
@@ -92,7 +92,7 @@ async function prepareSourceRepo(gitClient, ref, source, relativeDestination, te
|
|
92
92
|
});
|
93
93
|
}
|
94
94
|
}
|
95
|
-
await gitClient.commit(
|
95
|
+
await gitClient.commit(`chore(repo): move ${source} to ${relativeDestination} to prepare to be imported`);
|
96
96
|
if (needsSquash) {
|
97
97
|
await gitClient.squashLastTwoCommits();
|
98
98
|
}
|