@angular/cli 8.2.0-next.1 → 8.2.2

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.
@@ -1024,6 +1024,7 @@
1024
1024
  "allScript",
1025
1025
  "any",
1026
1026
  "anyScript",
1027
+ "anyComponentStyle",
1027
1028
  "bundle",
1028
1029
  "initial"
1029
1030
  ]
package/models/parser.js CHANGED
@@ -231,7 +231,9 @@ function parseFreeFormArguments(args) {
231
231
  leftovers.push(arg);
232
232
  }
233
233
  }
234
- parsedOptions['--'] = leftovers;
234
+ if (leftovers.length) {
235
+ parsedOptions['--'] = leftovers;
236
+ }
235
237
  return parsedOptions;
236
238
  }
237
239
  exports.parseFreeFormArguments = parseFreeFormArguments;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "8.2.0-next.1",
3
+ "version": "8.2.2",
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.802.0-next.1",
32
- "@angular-devkit/core": "8.2.0-next.1",
33
- "@angular-devkit/schematics": "8.2.0-next.1",
34
- "@schematics/angular": "8.2.0-next.1",
35
- "@schematics/update": "0.802.0-next.1",
31
+ "@angular-devkit/architect": "0.802.2",
32
+ "@angular-devkit/core": "8.2.2",
33
+ "@angular-devkit/schematics": "8.2.2",
34
+ "@schematics/angular": "8.2.2",
35
+ "@schematics/update": "0.802.2",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "^4.1.1",
@@ -42,7 +42,7 @@
42
42
  "open": "6.4.0",
43
43
  "pacote": "9.5.4",
44
44
  "read-package-tree": "5.3.1",
45
- "semver": "6.2.0",
45
+ "semver": "6.3.0",
46
46
  "symbol-observable": "1.2.0",
47
47
  "universal-analytics": "^0.4.20",
48
48
  "uuid": "^3.3.2"
@@ -50,10 +50,10 @@
50
50
  "ng-update": {
51
51
  "migrations": "@schematics/angular/migrations/migration-collection.json",
52
52
  "packageGroup": {
53
- "@angular/cli": "8.2.0-next.1",
54
- "@angular-devkit/build-angular": "0.802.0-next.1",
55
- "@angular-devkit/build-ng-packagr": "0.802.0-next.1",
56
- "@angular-devkit/build-webpack": "0.802.0-next.1"
53
+ "@angular/cli": "8.2.2",
54
+ "@angular-devkit/build-angular": "0.802.2",
55
+ "@angular-devkit/build-ng-packagr": "0.802.2",
56
+ "@angular-devkit/build-webpack": "0.802.2"
57
57
  }
58
58
  },
59
59
  "engines": {