We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bce4c4 commit a6a9302Copy full SHA for a6a9302
packages/angular_devkit/architect/node/node-modules-architect-host.ts
@@ -90,7 +90,9 @@ export class WorkspaceNodeModulesArchitectHost implements ArchitectHost<NodeModu
90
}
91
92
if (!targetDefinition.configurations?.[configuration]) {
93
- throw new Error(`Configuration '${configuration}' is not set in the workspace.`);
+ throw new Error(
94
+ `Configuration '${configuration}' for target '${target}' in project '${project}' is not set in the workspace.`,
95
+ );
96
97
98
return (targetDefinition.configurations?.[configuration] ?? {}) as json.JsonObject;
0 commit comments