nx 16.5.0-beta.2 → 16.5.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nx",
|
|
3
|
-
"version": "16.5.0
|
|
3
|
+
"version": "16.5.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": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://nx.dev",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@nrwl/tao": "16.5.0
|
|
35
|
+
"@nrwl/tao": "16.5.0",
|
|
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.0
|
|
84
|
-
"@nx/nx-darwin-x64": "16.5.0
|
|
85
|
-
"@nx/nx-freebsd-x64": "16.5.0
|
|
86
|
-
"@nx/nx-linux-arm-gnueabihf": "16.5.0
|
|
87
|
-
"@nx/nx-linux-arm64-gnu": "16.5.0
|
|
88
|
-
"@nx/nx-linux-arm64-musl": "16.5.0
|
|
89
|
-
"@nx/nx-linux-x64-gnu": "16.5.0
|
|
90
|
-
"@nx/nx-linux-x64-musl": "16.5.0
|
|
91
|
-
"@nx/nx-win32-arm64-msvc": "16.5.0
|
|
92
|
-
"@nx/nx-win32-x64-msvc": "16.5.0
|
|
83
|
+
"@nx/nx-darwin-arm64": "16.5.0",
|
|
84
|
+
"@nx/nx-darwin-x64": "16.5.0",
|
|
85
|
+
"@nx/nx-freebsd-x64": "16.5.0",
|
|
86
|
+
"@nx/nx-linux-arm-gnueabihf": "16.5.0",
|
|
87
|
+
"@nx/nx-linux-arm64-gnu": "16.5.0",
|
|
88
|
+
"@nx/nx-linux-arm64-musl": "16.5.0",
|
|
89
|
+
"@nx/nx-linux-x64-gnu": "16.5.0",
|
|
90
|
+
"@nx/nx-linux-x64-musl": "16.5.0",
|
|
91
|
+
"@nx/nx-win32-arm64-msvc": "16.5.0",
|
|
92
|
+
"@nx/nx-win32-x64-msvc": "16.5.0"
|
|
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": "eaebcc34f92db2200dab0bde2e2e1dde107a47bf"
|
|
179
179
|
}
|
package/src/config/workspaces.js
CHANGED
|
@@ -322,7 +322,7 @@ function getGlobPatternsFromPlugins(nxJson, paths, root = workspace_root_1.works
|
|
|
322
322
|
continue;
|
|
323
323
|
}
|
|
324
324
|
for (const filePattern of plugin.projectFilePatterns) {
|
|
325
|
-
patterns.push('
|
|
325
|
+
patterns.push('*/**/' + filePattern);
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
return patterns;
|
|
@@ -337,7 +337,7 @@ function getGlobPatternsFromPluginsAsync(nxJson, paths, root = workspace_root_1.
|
|
|
337
337
|
continue;
|
|
338
338
|
}
|
|
339
339
|
for (const filePattern of plugin.projectFilePatterns) {
|
|
340
|
-
patterns.push('
|
|
340
|
+
patterns.push('*/**/' + filePattern);
|
|
341
341
|
}
|
|
342
342
|
}
|
|
343
343
|
return patterns;
|