@angular-devkit/build-angular 14.0.0-next.2 → 14.0.0-next.3
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": "14.0.0-next.
|
|
3
|
+
"version": "14.0.0-next.3",
|
|
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": "2.1.2",
|
|
10
|
-
"@angular-devkit/architect": "0.1400.0-next.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1400.0-next.
|
|
12
|
-
"@angular-devkit/core": "14.0.0-next.
|
|
10
|
+
"@angular-devkit/architect": "0.1400.0-next.3",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1400.0-next.3",
|
|
12
|
+
"@angular-devkit/core": "14.0.0-next.3",
|
|
13
13
|
"@babel/core": "7.17.5",
|
|
14
14
|
"@babel/generator": "7.17.3",
|
|
15
15
|
"@babel/helper-annotate-as-pure": "7.16.7",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/runtime": "7.17.2",
|
|
21
21
|
"@babel/template": "7.16.7",
|
|
22
22
|
"@discoveryjs/json-ext": "0.5.6",
|
|
23
|
-
"@ngtools/webpack": "14.0.0-next.
|
|
23
|
+
"@ngtools/webpack": "14.0.0-next.3",
|
|
24
24
|
"ansi-colors": "4.1.1",
|
|
25
25
|
"babel-loader": "8.2.3",
|
|
26
26
|
"babel-plugin-istanbul": "6.1.1",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"core-js": "3.21.1",
|
|
31
31
|
"critters": "0.0.16",
|
|
32
32
|
"css-loader": "6.6.0",
|
|
33
|
-
"esbuild-wasm": "0.14.
|
|
33
|
+
"esbuild-wasm": "0.14.23",
|
|
34
34
|
"glob": "7.2.0",
|
|
35
35
|
"https-proxy-agent": "5.0.0",
|
|
36
36
|
"inquirer": "8.2.0",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"regenerator-runtime": "0.13.9",
|
|
54
54
|
"resolve-url-loader": "5.0.0",
|
|
55
55
|
"rxjs": "6.6.7",
|
|
56
|
-
"sass": "1.49.
|
|
56
|
+
"sass": "1.49.8",
|
|
57
57
|
"sass-loader": "12.6.0",
|
|
58
58
|
"semver": "7.3.5",
|
|
59
59
|
"source-map-loader": "3.0.1",
|
|
60
60
|
"source-map-support": "0.5.21",
|
|
61
61
|
"stylus": "0.56.0",
|
|
62
62
|
"stylus-loader": "6.2.0",
|
|
63
|
-
"terser": "5.
|
|
63
|
+
"terser": "5.11.0",
|
|
64
64
|
"text-table": "0.2.0",
|
|
65
65
|
"tree-kill": "1.2.2",
|
|
66
66
|
"tslib": "2.3.1",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"webpack-subresource-integrity": "5.1.0"
|
|
72
72
|
},
|
|
73
73
|
"optionalDependencies": {
|
|
74
|
-
"esbuild": "0.14.
|
|
74
|
+
"esbuild": "0.14.23"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"@angular/compiler-cli": "^14.0.0 || ^14.0.0-next",
|
|
@@ -37,6 +37,10 @@ class NamedChunksPlugin {
|
|
|
37
37
|
if (!(block instanceof webpack_1.AsyncDependenciesBlock)) {
|
|
38
38
|
continue;
|
|
39
39
|
}
|
|
40
|
+
if (block.groupOptions.name) {
|
|
41
|
+
// Ignore groups which have been named already.
|
|
42
|
+
return undefined;
|
|
43
|
+
}
|
|
40
44
|
for (const dependency of block.dependencies) {
|
|
41
45
|
if (dependency instanceof ImportDependency) {
|
|
42
46
|
return webpack_1.Template.toPath(dependency.request);
|