@angular-devkit/build-angular 0.1102.11 → 0.1102.15
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,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "0.1102.
|
|
3
|
+
"version": "0.1102.15",
|
|
4
4
|
"description": "Angular Webpack Build Facade",
|
|
5
5
|
"experimental": true,
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"typings": "src/index.d.ts",
|
|
8
8
|
"builders": "builders.json",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@angular-devkit/architect": "0.1102.
|
|
11
|
-
"@angular-devkit/build-optimizer": "0.1102.
|
|
12
|
-
"@angular-devkit/build-webpack": "0.1102.
|
|
13
|
-
"@angular-devkit/core": "11.2.
|
|
10
|
+
"@angular-devkit/architect": "0.1102.15",
|
|
11
|
+
"@angular-devkit/build-optimizer": "0.1102.15",
|
|
12
|
+
"@angular-devkit/build-webpack": "0.1102.15",
|
|
13
|
+
"@angular-devkit/core": "11.2.15",
|
|
14
14
|
"@babel/core": "7.12.10",
|
|
15
15
|
"@babel/generator": "7.12.11",
|
|
16
16
|
"@babel/plugin-transform-async-to-generator": "7.12.1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/template": "7.12.7",
|
|
21
21
|
"@discoveryjs/json-ext": "0.5.2",
|
|
22
22
|
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
|
|
23
|
-
"@ngtools/webpack": "11.2.
|
|
23
|
+
"@ngtools/webpack": "11.2.15",
|
|
24
24
|
"ansi-colors": "4.1.1",
|
|
25
25
|
"autoprefixer": "10.2.4",
|
|
26
26
|
"babel-loader": "8.2.2",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"circular-dependency-plugin": "5.2.2",
|
|
31
31
|
"copy-webpack-plugin": "6.3.2",
|
|
32
32
|
"core-js": "3.8.3",
|
|
33
|
-
"critters": "0.0.
|
|
33
|
+
"critters": "0.0.12",
|
|
34
34
|
"css-loader": "5.0.1",
|
|
35
|
-
"cssnano": "5.0.
|
|
35
|
+
"cssnano": "5.0.2",
|
|
36
36
|
"file-loader": "6.2.0",
|
|
37
37
|
"find-cache-dir": "3.3.1",
|
|
38
38
|
"glob": "7.1.6",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"ora": "5.3.0",
|
|
51
51
|
"parse5-html-rewriting-stream": "6.0.1",
|
|
52
52
|
"pnp-webpack-plugin": "1.6.4",
|
|
53
|
-
"postcss": "8.2.
|
|
53
|
+
"postcss": "8.2.15",
|
|
54
54
|
"postcss-import": "14.0.0",
|
|
55
55
|
"postcss-loader": "4.2.0",
|
|
56
56
|
"raw-loader": "4.0.2",
|
|
57
57
|
"regenerator-runtime": "0.13.7",
|
|
58
|
-
"resolve-url-loader": "
|
|
58
|
+
"resolve-url-loader": "4.0.0",
|
|
59
59
|
"rimraf": "3.0.2",
|
|
60
60
|
"rollup": "2.38.4",
|
|
61
61
|
"rxjs": "6.6.3",
|
|
@@ -79,12 +79,19 @@ class OptimizeCssWebpackPlugin {
|
|
|
79
79
|
return;
|
|
80
80
|
}
|
|
81
81
|
const cssNanoOptions = {
|
|
82
|
-
preset: [
|
|
82
|
+
preset: [
|
|
83
|
+
'default',
|
|
84
|
+
{
|
|
83
85
|
// Disable SVG optimizations, as this can cause optimizations which are not compatible in all browsers.
|
|
84
86
|
svgo: false,
|
|
85
87
|
// Disable `calc` optimizations, due to several issues. #16910, #16875, #17890
|
|
86
88
|
calc: false,
|
|
87
|
-
|
|
89
|
+
// Disable CSS rules sorted due to several issues #20693
|
|
90
|
+
// https://github.com/ionic-team/ionic-framework/issues/23266 and
|
|
91
|
+
// https://github.com/cssnano/cssnano/issues/1054
|
|
92
|
+
cssDeclarationSorter: false,
|
|
93
|
+
},
|
|
94
|
+
],
|
|
88
95
|
};
|
|
89
96
|
const postCssOptions = {
|
|
90
97
|
from: file,
|