@angular-devkit/architect-cli 0.1401.0-next.0 → 0.1401.0-next.3
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/bin/architect.js +1 -2
- package/package.json +3 -3
package/bin/architect.js
CHANGED
|
@@ -81,7 +81,6 @@ function _targetStringFromTarget({ project, target, configuration }) {
|
|
|
81
81
|
return `${project}:${target}${configuration !== undefined ? ':' + configuration : ''}`;
|
|
82
82
|
}
|
|
83
83
|
// Create a separate instance to prevent unintended global changes to the color configuration
|
|
84
|
-
// Create function is not defined in the typings. See: https://github.com/doowb/ansi-colors/pull/44
|
|
85
84
|
const colors = ansiColors.create();
|
|
86
85
|
async function _executeTarget(parentLogger, workspace, root, argv, registry) {
|
|
87
86
|
const architectHost = new node_1.WorkspaceNodeModulesArchitectHost(workspace, root);
|
|
@@ -159,7 +158,7 @@ async function _executeTarget(parentLogger, workspace, root, argv, registry) {
|
|
|
159
158
|
parentLogger.info('\nLogs:');
|
|
160
159
|
logs.forEach((l) => parentLogger.next(l));
|
|
161
160
|
parentLogger.fatal('Exception:');
|
|
162
|
-
parentLogger.fatal(err.stack);
|
|
161
|
+
parentLogger.fatal((err instanceof Error && err.stack) || `${err}`);
|
|
163
162
|
return 2;
|
|
164
163
|
}
|
|
165
164
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/architect-cli",
|
|
3
|
-
"version": "0.1401.0-next.
|
|
3
|
+
"version": "0.1401.0-next.3",
|
|
4
4
|
"description": "Angular Architect CLI",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"experimental": true,
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"tooling"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@angular-devkit/architect": "0.1401.0-next.
|
|
23
|
-
"@angular-devkit/core": "14.1.0-next.
|
|
22
|
+
"@angular-devkit/architect": "0.1401.0-next.3",
|
|
23
|
+
"@angular-devkit/core": "14.1.0-next.3",
|
|
24
24
|
"ansi-colors": "4.1.3",
|
|
25
25
|
"progress": "2.0.3",
|
|
26
26
|
"rxjs": "6.6.7",
|