File tree 1 file changed +2
-2
lines changed
packages/angular_devkit/architect/node
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export class WorkspaceNodeModulesArchitectHost implements ArchitectHost<NodeModu
129
129
130
130
const projectDefinition = this . _workspace . projects . get ( projectName ) ;
131
131
if ( ! projectDefinition ) {
132
- throw new Error ( ' Project does not exist.' ) ;
132
+ throw new Error ( ` Project " ${ projectName } " does not exist.` ) ;
133
133
}
134
134
135
135
const metadata = ( {
@@ -154,7 +154,7 @@ export class WorkspaceNodeModulesArchitectHost implements ArchitectHost<NodeModu
154
154
private findProjectTarget ( target : Target ) {
155
155
const projectDefinition = this . _workspace . projects . get ( target . project ) ;
156
156
if ( ! projectDefinition ) {
157
- throw new Error ( ' Project does not exist.' ) ;
157
+ throw new Error ( ` Project " ${ target . project } " does not exist.` ) ;
158
158
}
159
159
160
160
return projectDefinition . targets . get ( target . target ) ;
You can’t perform that action at this time.
0 commit comments