@angular/cli 8.3.4 → 8.3.5

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.
@@ -1,16 +1,14 @@
1
1
  'use strict';
2
- // This file is ES6 because it needs to be executed as is.
2
+ // This file is ES5 because it needs to be executed as is.
3
3
 
4
- if ('NG_CLI_ANALYTICS' in process.env) {
4
+ if (process.env['NG_CLI_ANALYTICS'] !== undefined) {
5
5
  return;
6
6
  }
7
7
 
8
- (async () => {
9
- try {
10
- const analytics = require('../../models/analytics');
8
+ try {
9
+ var analytics = require('../../models/analytics');
11
10
 
12
- if (!analytics.hasGlobalAnalyticsConfiguration()) {
13
- await analytics.promptGlobalAnalytics();
14
- }
15
- } catch (_) {}
16
- })();
11
+ if (!analytics.hasGlobalAnalyticsConfiguration()) {
12
+ analytics.promptGlobalAnalytics().catch(function() { });
13
+ }
14
+ } catch (_) {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "8.3.4",
3
+ "version": "8.3.5",
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.803.4",
32
- "@angular-devkit/core": "8.3.4",
33
- "@angular-devkit/schematics": "8.3.4",
34
- "@schematics/angular": "8.3.4",
35
- "@schematics/update": "0.803.4",
31
+ "@angular-devkit/architect": "0.803.5",
32
+ "@angular-devkit/core": "8.3.5",
33
+ "@angular-devkit/schematics": "8.3.5",
34
+ "@schematics/angular": "8.3.5",
35
+ "@schematics/update": "0.803.5",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "^4.1.1",
@@ -50,10 +50,10 @@
50
50
  "ng-update": {
51
51
  "migrations": "@schematics/angular/migrations/migration-collection.json",
52
52
  "packageGroup": {
53
- "@angular/cli": "8.3.4",
54
- "@angular-devkit/build-angular": "0.803.4",
55
- "@angular-devkit/build-ng-packagr": "0.803.4",
56
- "@angular-devkit/build-webpack": "0.803.4"
53
+ "@angular/cli": "8.3.5",
54
+ "@angular-devkit/build-angular": "0.803.5",
55
+ "@angular-devkit/build-ng-packagr": "0.803.5",
56
+ "@angular-devkit/build-webpack": "0.803.5"
57
57
  }
58
58
  },
59
59
  "engines": {