@angular-devkit/architect 0.1000.5 → 0.1000.6
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.
|
@@ -100,7 +100,7 @@ class WorkspaceNodeModulesArchitectHost {
|
|
|
100
100
|
const projectName = typeof target === 'string' ? target : target.project;
|
|
101
101
|
const projectDefinition = this._workspace.projects.get(projectName);
|
|
102
102
|
if (!projectDefinition) {
|
|
103
|
-
throw new Error(
|
|
103
|
+
throw new Error(`Project "${projectName}" does not exist.`);
|
|
104
104
|
}
|
|
105
105
|
const metadata = {
|
|
106
106
|
root: projectDefinition.root,
|
|
@@ -120,7 +120,7 @@ class WorkspaceNodeModulesArchitectHost {
|
|
|
120
120
|
findProjectTarget(target) {
|
|
121
121
|
const projectDefinition = this._workspace.projects.get(target.project);
|
|
122
122
|
if (!projectDefinition) {
|
|
123
|
-
throw new Error(
|
|
123
|
+
throw new Error(`Project "${target.project}" does not exist.`);
|
|
124
124
|
}
|
|
125
125
|
return projectDefinition.targets.get(target.target);
|
|
126
126
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/architect",
|
|
3
|
-
"version": "0.1000.
|
|
3
|
+
"version": "0.1000.6",
|
|
4
4
|
"description": "Angular Build Facade",
|
|
5
5
|
"experimental": true,
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"typings": "src/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@angular-devkit/core": "10.0.
|
|
9
|
+
"@angular-devkit/core": "10.0.6",
|
|
10
10
|
"rxjs": "6.5.5"
|
|
11
11
|
},
|
|
12
12
|
"builders": "./builders/builders.json",
|