@angular/cli 9.1.0 → 9.1.4

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/ng CHANGED
@@ -16,13 +16,13 @@ try {
16
16
  // tslint:disable-next-line: no-var-keyword
17
17
  var version = process.versions.node.split('.').map(part => Number(part));
18
18
  if (version[0] < 10 || version[0] === 11 || (version[0] === 10 && version[1] < 13)) {
19
- process.stderr.write(
19
+ console.error(
20
20
  'Node.js version ' + process.version + ' detected.\n' +
21
21
  'The Angular CLI requires a minimum Node.js version of either v10.13 or v12.0.\n\n' +
22
- 'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n',
22
+ 'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n'
23
23
  );
24
24
 
25
- process.exit(3);
25
+ process.exitCode = 3;
26
+ } else {
27
+ require('../lib/init');
26
28
  }
27
-
28
- require('../lib/init');
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Configures the gathering of Angular CLI usage metrics. See
3
- * https://v8.angular.io/cli/usage-analytics-gathering.
3
+ * https://angular.io/cli/usage-analytics-gathering.
4
4
  */
5
5
  export interface Schema {
6
6
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/schema",
3
3
  "$id": "ng-cli://commands/analytics.json",
4
- "description": "Configures the gathering of Angular CLI usage metrics. See https://v8.angular.io/cli/usage-analytics-gathering.",
4
+ "description": "Configures the gathering of Angular CLI usage metrics. See https://angular.io/cli/usage-analytics-gathering.",
5
5
  "$longDescription": "./analytics-long.md",
6
6
 
7
7
  "$aliases": [],
@@ -20,6 +20,13 @@
20
20
  }
21
21
  }
22
22
  },
23
+ "configuration": {
24
+ "description": "A named build target, as specified in the \"configurations\" section of angular.json.\nEach named target is accompanied by a configuration of option defaults for that target.",
25
+ "type": "string",
26
+ "aliases": [
27
+ "c"
28
+ ]
29
+ },
23
30
  "required": [
24
31
  ]
25
32
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "9.1.0",
3
+ "version": "9.1.4",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -28,11 +28,11 @@
28
28
  },
29
29
  "homepage": "https://github.com/angular/angular-cli",
30
30
  "dependencies": {
31
- "@angular-devkit/architect": "0.901.0",
32
- "@angular-devkit/core": "9.1.0",
33
- "@angular-devkit/schematics": "9.1.0",
34
- "@schematics/angular": "9.1.0",
35
- "@schematics/update": "0.901.0",
31
+ "@angular-devkit/architect": "0.901.4",
32
+ "@angular-devkit/core": "9.1.4",
33
+ "@angular-devkit/schematics": "9.1.4",
34
+ "@schematics/angular": "9.1.4",
35
+ "@schematics/update": "0.901.4",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "4.1.1",
@@ -41,7 +41,7 @@
41
41
  "npm-package-arg": "8.0.1",
42
42
  "npm-pick-manifest": "6.0.0",
43
43
  "open": "7.0.3",
44
- "pacote": "11.1.4",
44
+ "pacote": "9.5.12",
45
45
  "read-package-tree": "5.3.1",
46
46
  "rimraf": "3.0.2",
47
47
  "semver": "7.1.3",
@@ -52,12 +52,12 @@
52
52
  "ng-update": {
53
53
  "migrations": "@schematics/angular/migrations/migration-collection.json",
54
54
  "packageGroup": {
55
- "@angular/cli": "9.1.0",
56
- "@angular-devkit/build-angular": "0.901.0",
57
- "@angular-devkit/build-ng-packagr": "0.901.0",
58
- "@angular-devkit/build-webpack": "0.901.0",
59
- "@angular-devkit/core": "9.1.0",
60
- "@angular-devkit/schematics": "9.1.0"
55
+ "@angular/cli": "9.1.4",
56
+ "@angular-devkit/build-angular": "0.901.4",
57
+ "@angular-devkit/build-ng-packagr": "0.901.4",
58
+ "@angular-devkit/build-webpack": "0.901.4",
59
+ "@angular-devkit/core": "9.1.4",
60
+ "@angular-devkit/schematics": "9.1.4"
61
61
  }
62
62
  },
63
63
  "engines": {