@angular-devkit/build-angular 13.2.0 → 13.2.1
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,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.1",
|
|
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.1.1",
|
|
10
|
-
"@angular-devkit/architect": "0.1302.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1302.
|
|
12
|
-
"@angular-devkit/core": "13.2.
|
|
10
|
+
"@angular-devkit/architect": "0.1302.1",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1302.1",
|
|
12
|
+
"@angular-devkit/core": "13.2.1",
|
|
13
13
|
"@babel/core": "7.16.12",
|
|
14
14
|
"@babel/generator": "7.16.8",
|
|
15
15
|
"@babel/helper-annotate-as-pure": "7.16.7",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/runtime": "7.16.7",
|
|
21
21
|
"@babel/template": "7.16.7",
|
|
22
22
|
"@discoveryjs/json-ext": "0.5.6",
|
|
23
|
-
"@ngtools/webpack": "13.2.
|
|
23
|
+
"@ngtools/webpack": "13.2.1",
|
|
24
24
|
"ansi-colors": "4.1.1",
|
|
25
25
|
"babel-loader": "8.2.3",
|
|
26
26
|
"babel-plugin-istanbul": "6.1.1",
|
|
@@ -115,10 +115,10 @@ class CssOptimizerPlugin {
|
|
|
115
115
|
// browserslist uses the name `ios_saf` for iOS Safari whereas esbuild uses `ios`
|
|
116
116
|
if (browserName === 'ios_saf') {
|
|
117
117
|
browserName = 'ios';
|
|
118
|
-
// browserslist also uses ranges for iOS Safari versions but only the lowest is required
|
|
119
|
-
// to perform minimum supported feature checks. esbuild also expects a single version.
|
|
120
|
-
[version] = version.split('-');
|
|
121
118
|
}
|
|
119
|
+
// browserslist uses ranges `15.2-15.3` versions but only the lowest is required
|
|
120
|
+
// to perform minimum supported feature checks. esbuild also expects a single version.
|
|
121
|
+
[version] = version.split('-');
|
|
122
122
|
if (esBuildSupportedBrowsers.has(browserName)) {
|
|
123
123
|
if (browserName === 'safari' && version === 'TP') {
|
|
124
124
|
// esbuild only supports numeric versions so `TP` is converted to a high number (999) since
|