@angular-devkit/architect-cli 0.1401.0-next.0 → 0.1401.0-next.1

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.
Files changed (2) hide show
  1. package/bin/architect.js +1 -1
  2. package/package.json +3 -3
package/bin/architect.js CHANGED
@@ -159,7 +159,7 @@ async function _executeTarget(parentLogger, workspace, root, argv, registry) {
159
159
  parentLogger.info('\nLogs:');
160
160
  logs.forEach((l) => parentLogger.next(l));
161
161
  parentLogger.fatal('Exception:');
162
- parentLogger.fatal(err.stack);
162
+ parentLogger.fatal((err instanceof Error && err.stack) || `${err}`);
163
163
  return 2;
164
164
  }
165
165
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/architect-cli",
3
- "version": "0.1401.0-next.0",
3
+ "version": "0.1401.0-next.1",
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.0",
23
- "@angular-devkit/core": "14.1.0-next.0",
22
+ "@angular-devkit/architect": "0.1401.0-next.1",
23
+ "@angular-devkit/core": "14.1.0-next.1",
24
24
  "ansi-colors": "4.1.3",
25
25
  "progress": "2.0.3",
26
26
  "rxjs": "6.6.7",