nx 20.7.0-canary.20250328-4a3a824 → 20.7.0
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/native/nx.wasm32-wasi.wasm +0 -0
- package/src/utils/path.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.7.0
|
3
|
+
"version": "20.7.0",
|
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.7.0
|
86
|
-
"@nx/nx-darwin-x64": "20.7.0
|
87
|
-
"@nx/nx-freebsd-x64": "20.7.0
|
88
|
-
"@nx/nx-linux-arm-gnueabihf": "20.7.0
|
89
|
-
"@nx/nx-linux-arm64-gnu": "20.7.0
|
90
|
-
"@nx/nx-linux-arm64-musl": "20.7.0
|
91
|
-
"@nx/nx-linux-x64-gnu": "20.7.0
|
92
|
-
"@nx/nx-linux-x64-musl": "20.7.0
|
93
|
-
"@nx/nx-win32-arm64-msvc": "20.7.0
|
94
|
-
"@nx/nx-win32-x64-msvc": "20.7.0
|
85
|
+
"@nx/nx-darwin-arm64": "20.7.0",
|
86
|
+
"@nx/nx-darwin-x64": "20.7.0",
|
87
|
+
"@nx/nx-freebsd-x64": "20.7.0",
|
88
|
+
"@nx/nx-linux-arm-gnueabihf": "20.7.0",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "20.7.0",
|
90
|
+
"@nx/nx-linux-arm64-musl": "20.7.0",
|
91
|
+
"@nx/nx-linux-x64-gnu": "20.7.0",
|
92
|
+
"@nx/nx-linux-x64-musl": "20.7.0",
|
93
|
+
"@nx/nx-win32-arm64-msvc": "20.7.0",
|
94
|
+
"@nx/nx-win32-x64-msvc": "20.7.0"
|
95
95
|
},
|
96
96
|
"nx-migrations": {
|
97
97
|
"migrations": "./migrations.json",
|
Binary file
|
package/src/utils/path.js
CHANGED
@@ -6,7 +6,7 @@ exports.getCwd = getCwd;
|
|
6
6
|
const path = require("path");
|
7
7
|
const workspace_root_1 = require("./workspace-root");
|
8
8
|
function removeWindowsDriveLetter(osSpecificPath) {
|
9
|
-
return osSpecificPath.replace(/^[
|
9
|
+
return osSpecificPath.replace(/^[a-zA-Z]:/, '');
|
10
10
|
}
|
11
11
|
/**
|
12
12
|
* Coverts an os specific path to a unix style path. Use this when writing paths to config files.
|