nx 19.0.0-beta.4 → 19.0.0-beta.5
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/.eslintrc.json +1 -1
- package/package.json +12 -12
- package/src/config/nx-json.d.ts +2 -2
- package/src/core/graph/index.html +1 -2
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/runtime.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/devkit-internals.d.ts +1 -0
- package/src/devkit-internals.js +4 -2
- package/src/project-graph/utils/retrieve-workspace-files.d.ts +3 -3
- package/src/core/graph/3rdpartylicenses.txt +0 -785
package/.eslintrc.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.0.0-beta.
|
3
|
+
"version": "19.0.0-beta.5",
|
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": {
|
@@ -66,7 +66,7 @@
|
|
66
66
|
"yargs-parser": "21.1.1",
|
67
67
|
"node-machine-id": "1.1.12",
|
68
68
|
"ora": "5.3.0",
|
69
|
-
"@nrwl/tao": "19.0.0-beta.
|
69
|
+
"@nrwl/tao": "19.0.0-beta.5"
|
70
70
|
},
|
71
71
|
"peerDependencies": {
|
72
72
|
"@swc-node/register": "^1.8.0",
|
@@ -81,16 +81,16 @@
|
|
81
81
|
}
|
82
82
|
},
|
83
83
|
"optionalDependencies": {
|
84
|
-
"@nx/nx-darwin-x64": "19.0.0-beta.
|
85
|
-
"@nx/nx-darwin-arm64": "19.0.0-beta.
|
86
|
-
"@nx/nx-linux-x64-gnu": "19.0.0-beta.
|
87
|
-
"@nx/nx-linux-x64-musl": "19.0.0-beta.
|
88
|
-
"@nx/nx-win32-x64-msvc": "19.0.0-beta.
|
89
|
-
"@nx/nx-linux-arm64-gnu": "19.0.0-beta.
|
90
|
-
"@nx/nx-linux-arm64-musl": "19.0.0-beta.
|
91
|
-
"@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.
|
92
|
-
"@nx/nx-win32-arm64-msvc": "19.0.0-beta.
|
93
|
-
"@nx/nx-freebsd-x64": "19.0.0-beta.
|
84
|
+
"@nx/nx-darwin-x64": "19.0.0-beta.5",
|
85
|
+
"@nx/nx-darwin-arm64": "19.0.0-beta.5",
|
86
|
+
"@nx/nx-linux-x64-gnu": "19.0.0-beta.5",
|
87
|
+
"@nx/nx-linux-x64-musl": "19.0.0-beta.5",
|
88
|
+
"@nx/nx-win32-x64-msvc": "19.0.0-beta.5",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "19.0.0-beta.5",
|
90
|
+
"@nx/nx-linux-arm64-musl": "19.0.0-beta.5",
|
91
|
+
"@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.5",
|
92
|
+
"@nx/nx-win32-arm64-msvc": "19.0.0-beta.5",
|
93
|
+
"@nx/nx-freebsd-x64": "19.0.0-beta.5"
|
94
94
|
},
|
95
95
|
"nx-migrations": {
|
96
96
|
"migrations": "./migrations.json",
|
package/src/config/nx-json.d.ts
CHANGED
@@ -395,9 +395,9 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
|
|
395
395
|
useInferencePlugins?: boolean;
|
396
396
|
}
|
397
397
|
export type PluginConfiguration = string | ExpandedPluginConfiguration;
|
398
|
-
export type ExpandedPluginConfiguration = {
|
398
|
+
export type ExpandedPluginConfiguration<T = unknown> = {
|
399
399
|
plugin: string;
|
400
|
-
options?:
|
400
|
+
options?: T;
|
401
401
|
include?: string[];
|
402
402
|
exclude?: string[];
|
403
403
|
};
|