nx 16.5.1 → 16.5.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nx",
|
|
3
|
-
"version": "16.5.
|
|
3
|
+
"version": "16.5.2",
|
|
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": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://nx.dev",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@nrwl/tao": "16.5.
|
|
35
|
+
"@nrwl/tao": "16.5.2",
|
|
36
36
|
"@parcel/watcher": "2.0.4",
|
|
37
37
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
38
38
|
"@yarnpkg/parsers": "3.0.0-rc.46",
|
|
@@ -80,16 +80,16 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"optionalDependencies": {
|
|
83
|
-
"@nx/nx-darwin-arm64": "16.5.
|
|
84
|
-
"@nx/nx-darwin-x64": "16.5.
|
|
85
|
-
"@nx/nx-freebsd-x64": "16.5.
|
|
86
|
-
"@nx/nx-linux-arm-gnueabihf": "16.5.
|
|
87
|
-
"@nx/nx-linux-arm64-gnu": "16.5.
|
|
88
|
-
"@nx/nx-linux-arm64-musl": "16.5.
|
|
89
|
-
"@nx/nx-linux-x64-gnu": "16.5.
|
|
90
|
-
"@nx/nx-linux-x64-musl": "16.5.
|
|
91
|
-
"@nx/nx-win32-arm64-msvc": "16.5.
|
|
92
|
-
"@nx/nx-win32-x64-msvc": "16.5.
|
|
83
|
+
"@nx/nx-darwin-arm64": "16.5.2",
|
|
84
|
+
"@nx/nx-darwin-x64": "16.5.2",
|
|
85
|
+
"@nx/nx-freebsd-x64": "16.5.2",
|
|
86
|
+
"@nx/nx-linux-arm-gnueabihf": "16.5.2",
|
|
87
|
+
"@nx/nx-linux-arm64-gnu": "16.5.2",
|
|
88
|
+
"@nx/nx-linux-arm64-musl": "16.5.2",
|
|
89
|
+
"@nx/nx-linux-x64-gnu": "16.5.2",
|
|
90
|
+
"@nx/nx-linux-x64-musl": "16.5.2",
|
|
91
|
+
"@nx/nx-win32-arm64-msvc": "16.5.2",
|
|
92
|
+
"@nx/nx-win32-x64-msvc": "16.5.2"
|
|
93
93
|
},
|
|
94
94
|
"nx-migrations": {
|
|
95
95
|
"migrations": "./migrations.json",
|
|
@@ -175,5 +175,5 @@
|
|
|
175
175
|
},
|
|
176
176
|
"main": "./bin/nx.js",
|
|
177
177
|
"types": "./bin/nx.d.ts",
|
|
178
|
-
"gitHead": "
|
|
178
|
+
"gitHead": "928273940d11aa7dea87cb625a92f2c3ec62e726"
|
|
179
179
|
}
|
|
@@ -19,7 +19,8 @@ const versions_1 = require("../../utils/versions");
|
|
|
19
19
|
function initHandler(options) {
|
|
20
20
|
var _a;
|
|
21
21
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
22
|
-
|
|
22
|
+
// strip the 'init' command itself so we don't forward it
|
|
23
|
+
const args = process.argv.slice(3).join(' ');
|
|
23
24
|
const flags = parser(args, {
|
|
24
25
|
boolean: ['useDotNxInstallation'],
|
|
25
26
|
alias: {
|
|
@@ -65,7 +65,7 @@ exports.retrieveProjectConfigurations = retrieveProjectConfigurations;
|
|
|
65
65
|
function buildAllWorkspaceFiles(projectFileMap, globalFiles) {
|
|
66
66
|
perf_hooks_1.performance.mark('get-all-workspace-files:start');
|
|
67
67
|
let fileData = Object.values(projectFileMap).flat();
|
|
68
|
-
fileData.
|
|
68
|
+
fileData = fileData.concat(globalFiles);
|
|
69
69
|
perf_hooks_1.performance.mark('get-all-workspace-files:end');
|
|
70
70
|
perf_hooks_1.performance.measure('get-all-workspace-files', 'get-all-workspace-files:start', 'get-all-workspace-files:end');
|
|
71
71
|
return fileData;
|