nx 14.4.1 → 14.5.0-beta.1
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/CHANGELOG.md +1 -1
- package/package.json +4 -4
- package/schemas/nx-schema.json +16 -2
- package/schemas/project-schema.json +8 -1
- package/schemas/workspace-schema.json +25 -11
- package/src/command-line/examples.js +1 -1
- package/src/command-line/examples.js.map +1 -1
- package/src/command-line/format.js +4 -1
- package/src/command-line/format.js.map +1 -1
- package/src/command-line/generate.js +2 -1
- package/src/command-line/generate.js.map +1 -1
- package/src/command-line/migrate.js +5 -5
- package/src/command-line/migrate.js.map +1 -1
- package/src/command-line/nx-commands.js +2 -10
- package/src/command-line/nx-commands.js.map +1 -1
- package/src/command-line/run-many.js +2 -1
- package/src/command-line/run-many.js.map +1 -1
- package/src/command-line/run-one.js +2 -2
- package/src/command-line/run-one.js.map +1 -1
- package/src/config/workspace-json-project-json.d.ts +10 -0
- package/src/core/dep-graph/main.esm.js +1 -1
- package/src/project-graph/build-nodes/workspace-projects.js +3 -0
- package/src/project-graph/build-nodes/workspace-projects.js.map +1 -1
- package/src/project-graph/nx-deps-cache.d.ts +1 -1
- package/src/tasks-runner/cache.d.ts +12 -1
- package/src/tasks-runner/cache.js +196 -58
- package/src/tasks-runner/cache.js.map +1 -1
- package/src/tasks-runner/create-task-graph.d.ts +1 -1
- package/src/tasks-runner/create-task-graph.js +10 -7
- package/src/tasks-runner/create-task-graph.js.map +1 -1
- package/src/utils/package-json.d.ts +5 -2
- package/src/utils/package-json.js.map +1 -1
- package/src/utils/package-manager.js +3 -2
- package/src/utils/package-manager.js.map +1 -1
|
@@ -82,6 +82,12 @@ export interface ProjectConfiguration {
|
|
|
82
82
|
* List of projects which are added as a dependency
|
|
83
83
|
*/
|
|
84
84
|
implicitDependencies?: string[];
|
|
85
|
+
/**
|
|
86
|
+
* Named inputs targets can refer to reduce duplication
|
|
87
|
+
*/
|
|
88
|
+
namedInputs?: {
|
|
89
|
+
[inputName: string]: (string | InputDefinition)[];
|
|
90
|
+
};
|
|
85
91
|
/**
|
|
86
92
|
* List of tags used by nx-enforce-module-boundaries / project graph
|
|
87
93
|
*/
|
|
@@ -99,6 +105,10 @@ export interface TargetDependencyConfig {
|
|
|
99
105
|
* The name of the target
|
|
100
106
|
*/
|
|
101
107
|
target: string;
|
|
108
|
+
/**
|
|
109
|
+
* Configuration for params handling.
|
|
110
|
+
*/
|
|
111
|
+
params?: 'ignore' | 'forward';
|
|
102
112
|
}
|
|
103
113
|
export declare type InputDefinition = {
|
|
104
114
|
input: string;
|