File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/angular_devkit/architect/node Expand file tree Collapse file tree 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
129129
130130 const projectDefinition = this . _workspace . projects . get ( projectName ) ;
131131 if ( ! projectDefinition ) {
132- throw new Error ( ' Project does not exist.' ) ;
132+ throw new Error ( ` Project " ${ projectName } " does not exist.` ) ;
133133 }
134134
135135 const metadata = ( {
@@ -154,7 +154,7 @@ export class WorkspaceNodeModulesArchitectHost implements ArchitectHost<NodeModu
154154 private findProjectTarget ( target : Target ) {
155155 const projectDefinition = this . _workspace . projects . get ( target . project ) ;
156156 if ( ! projectDefinition ) {
157- throw new Error ( ' Project does not exist.' ) ;
157+ throw new Error ( ` Project " ${ target . project } " does not exist.` ) ;
158158 }
159159
160160 return projectDefinition . targets . get ( target . target ) ;
You can’t perform that action at this time.
0 commit comments