@angular/cli 11.1.1 → 11.1.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.
@@ -751,7 +751,7 @@
751
751
  ]
752
752
  },
753
753
  "fonts": {
754
- "description": "Enables optimization for fonts. This requires internet access.",
754
+ "description": "Enables optimization for fonts. This option requires internet access. `HTTPS_PROXY` environment variable can be used to specify a proxy server.",
755
755
  "default": true,
756
756
  "oneOf": [
757
757
  {
@@ -759,7 +759,7 @@
759
759
  "properties": {
760
760
  "inline": {
761
761
  "type": "boolean",
762
- "description": "Reduce render blocking requests by inlining external Google fonts and icons CSS definitions in the application's HTML index file. This requires internet access.",
762
+ "description": "Reduce render blocking requests by inlining external Google fonts and icons CSS definitions in the application's HTML index file. This option requires internet access. `HTTPS_PROXY` environment variable can be used to specify a proxy server.",
763
763
  "default": true
764
764
  }
765
765
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "11.1.1",
3
+ "version": "11.1.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.1101.1",
32
- "@angular-devkit/core": "11.1.1",
33
- "@angular-devkit/schematics": "11.1.1",
34
- "@schematics/angular": "11.1.1",
35
- "@schematics/update": "0.1101.1",
31
+ "@angular-devkit/architect": "0.1101.2",
32
+ "@angular-devkit/core": "11.1.2",
33
+ "@angular-devkit/schematics": "11.1.2",
34
+ "@schematics/angular": "11.1.2",
35
+ "@schematics/update": "0.1101.2",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "4.3.1",
@@ -53,12 +53,12 @@
53
53
  "ng-update": {
54
54
  "migrations": "@schematics/angular/migrations/migration-collection.json",
55
55
  "packageGroup": {
56
- "@angular/cli": "11.1.1",
57
- "@angular-devkit/architect": "0.1101.1",
58
- "@angular-devkit/build-angular": "0.1101.1",
59
- "@angular-devkit/build-webpack": "0.1101.1",
60
- "@angular-devkit/core": "11.1.1",
61
- "@angular-devkit/schematics": "11.1.1"
56
+ "@angular/cli": "11.1.2",
57
+ "@angular-devkit/architect": "0.1101.2",
58
+ "@angular-devkit/build-angular": "0.1101.2",
59
+ "@angular-devkit/build-webpack": "0.1101.2",
60
+ "@angular-devkit/core": "11.1.2",
61
+ "@angular-devkit/schematics": "11.1.2"
62
62
  }
63
63
  },
64
64
  "engines": {
@@ -81,7 +81,7 @@ function readOptions(logger, yarn = false, showPotentials = false) {
81
81
  if (typeof value === 'string') {
82
82
  const cafile = path.resolve(path.dirname(location), value);
83
83
  try {
84
- options['ca'] = fs_1.readFileSync(cafile, 'utf8').replace(/\r?\n/, '\\n');
84
+ options['ca'] = fs_1.readFileSync(cafile, 'utf8').replace(/\r?\n/g, '\n');
85
85
  }
86
86
  catch (_a) { }
87
87
  }