@angular-devkit/build-angular 12.2.15 → 12.2.18
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": "12.2.
|
|
3
|
+
"version": "12.2.18",
|
|
4
4
|
"description": "Angular Webpack Build Facade",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
7
7
|
"builders": "builders.json",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@ampproject/remapping": "1.0.1",
|
|
10
|
-
"@angular-devkit/architect": "0.1202.
|
|
11
|
-
"@angular-devkit/build-optimizer": "0.1202.
|
|
12
|
-
"@angular-devkit/build-webpack": "0.1202.
|
|
13
|
-
"@angular-devkit/core": "12.2.
|
|
10
|
+
"@angular-devkit/architect": "0.1202.18",
|
|
11
|
+
"@angular-devkit/build-optimizer": "0.1202.18",
|
|
12
|
+
"@angular-devkit/build-webpack": "0.1202.18",
|
|
13
|
+
"@angular-devkit/core": "12.2.18",
|
|
14
14
|
"@babel/core": "7.14.8",
|
|
15
15
|
"@babel/generator": "7.14.8",
|
|
16
16
|
"@babel/helper-annotate-as-pure": "7.14.5",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@babel/template": "7.14.5",
|
|
23
23
|
"@discoveryjs/json-ext": "0.5.3",
|
|
24
24
|
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
|
|
25
|
-
"@ngtools/webpack": "12.2.
|
|
25
|
+
"@ngtools/webpack": "12.2.18",
|
|
26
26
|
"ansi-colors": "4.1.1",
|
|
27
27
|
"babel-loader": "8.2.2",
|
|
28
28
|
"browserslist": "^4.9.1",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"style-loader": "3.2.1",
|
|
66
66
|
"stylus": "0.54.8",
|
|
67
67
|
"stylus-loader": "6.1.0",
|
|
68
|
-
"terser": "5.
|
|
68
|
+
"terser": "5.14.2",
|
|
69
69
|
"terser-webpack-plugin": "5.1.4",
|
|
70
70
|
"text-table": "0.2.0",
|
|
71
71
|
"tree-kill": "1.2.2",
|
|
@@ -444,10 +444,10 @@ function transformSupportedBrowsersToTargets(supportedBrowsers) {
|
|
|
444
444
|
// browserslist uses the name `ios_saf` for iOS Safari whereas esbuild uses `ios`
|
|
445
445
|
if (browserName === 'ios_saf') {
|
|
446
446
|
browserName = 'ios';
|
|
447
|
-
// browserslist also uses ranges for iOS Safari versions but only the lowest is required
|
|
448
|
-
// to perform minimum supported feature checks. esbuild also expects a single version.
|
|
449
|
-
[version] = version.split('-');
|
|
450
447
|
}
|
|
448
|
+
// browserslist uses ranges `15.2-15.3` versions but only the lowest is required
|
|
449
|
+
// to perform minimum supported feature checks. esbuild also expects a single version.
|
|
450
|
+
[version] = version.split('-');
|
|
451
451
|
if (browserName === 'ie') {
|
|
452
452
|
transformed.push('edge12');
|
|
453
453
|
}
|