@angular/cli 14.1.0 → 14.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.3",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1401.
|
|
29
|
-
"@angular-devkit/core": "14.1.
|
|
30
|
-
"@angular-devkit/schematics": "14.1.
|
|
31
|
-
"@schematics/angular": "14.1.
|
|
28
|
+
"@angular-devkit/architect": "0.1401.3",
|
|
29
|
+
"@angular-devkit/core": "14.1.3",
|
|
30
|
+
"@angular-devkit/schematics": "14.1.3",
|
|
31
|
+
"@schematics/angular": "14.1.3",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"debug": "4.3.4",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"ng-update": {
|
|
50
50
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
51
51
|
"packageGroup": {
|
|
52
|
-
"@angular/cli": "14.1.
|
|
53
|
-
"@angular-devkit/architect": "0.1401.
|
|
54
|
-
"@angular-devkit/build-angular": "14.1.
|
|
55
|
-
"@angular-devkit/build-webpack": "0.1401.
|
|
56
|
-
"@angular-devkit/core": "14.1.
|
|
57
|
-
"@angular-devkit/schematics": "14.1.
|
|
52
|
+
"@angular/cli": "14.1.3",
|
|
53
|
+
"@angular-devkit/architect": "0.1401.3",
|
|
54
|
+
"@angular-devkit/build-angular": "14.1.3",
|
|
55
|
+
"@angular-devkit/build-webpack": "0.1401.3",
|
|
56
|
+
"@angular-devkit/core": "14.1.3",
|
|
57
|
+
"@angular-devkit/schematics": "14.1.3"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"engines": {
|
|
@@ -26,7 +26,7 @@ By default, disk cache is only enabled for local environments. The value of envi
|
|
|
26
26
|
|
|
27
27
|
- `all` - allows disk cache on all machines.
|
|
28
28
|
- `local` - allows disk cache only on development machines.
|
|
29
|
-
- `ci` - allows disk cache only on continuous integration (
|
|
29
|
+
- `ci` - allows disk cache only on continuous integration (CI) systems.
|
|
30
30
|
|
|
31
31
|
To change the environment setting to `all`, run the following command:
|
|
32
32
|
|
package/src/utilities/error.js
CHANGED
|
@@ -13,6 +13,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
13
13
|
exports.assertIsError = void 0;
|
|
14
14
|
const assert_1 = __importDefault(require("assert"));
|
|
15
15
|
function assertIsError(value) {
|
|
16
|
-
|
|
16
|
+
const isError = value instanceof Error ||
|
|
17
|
+
// The following is needing to identify errors coming from RxJs.
|
|
18
|
+
(typeof value === 'object' && value && 'name' in value && 'message' in value);
|
|
19
|
+
(0, assert_1.default)(isError, 'catch clause variable is not an Error instance');
|
|
17
20
|
}
|
|
18
21
|
exports.assertIsError = assertIsError;
|