@angular-devkit/build-angular 17.3.14 → 17.3.16
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": "17.3.
|
|
3
|
+
"version": "17.3.16",
|
|
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.3.0",
|
|
10
|
-
"@angular-devkit/architect": "0.1703.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1703.
|
|
12
|
-
"@angular-devkit/core": "17.3.
|
|
10
|
+
"@angular-devkit/architect": "0.1703.16",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1703.16",
|
|
12
|
+
"@angular-devkit/core": "17.3.16",
|
|
13
13
|
"@babel/core": "7.26.10",
|
|
14
14
|
"@babel/generator": "7.26.10",
|
|
15
15
|
"@babel/helper-annotate-as-pure": "7.25.9",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/preset-env": "7.26.9",
|
|
21
21
|
"@babel/runtime": "7.26.10",
|
|
22
22
|
"@discoveryjs/json-ext": "0.5.7",
|
|
23
|
-
"@ngtools/webpack": "17.3.
|
|
23
|
+
"@ngtools/webpack": "17.3.16",
|
|
24
24
|
"@vitejs/plugin-basic-ssl": "1.1.0",
|
|
25
25
|
"ansi-colors": "4.1.3",
|
|
26
26
|
"autoprefixer": "10.4.18",
|
|
@@ -61,8 +61,7 @@
|
|
|
61
61
|
"terser": "5.29.1",
|
|
62
62
|
"tree-kill": "1.2.2",
|
|
63
63
|
"tslib": "2.6.2",
|
|
64
|
-
"
|
|
65
|
-
"vite": "5.4.15",
|
|
64
|
+
"vite": "~5.4.17",
|
|
66
65
|
"watchpack": "2.4.0",
|
|
67
66
|
"webpack": "5.94.0",
|
|
68
67
|
"webpack-dev-middleware": "6.1.2",
|
|
@@ -144,5 +143,6 @@
|
|
|
144
143
|
"bugs": {
|
|
145
144
|
"url": "https://github.com/angular/angular-cli/issues"
|
|
146
145
|
},
|
|
147
|
-
"homepage": "https://github.com/angular/angular-cli"
|
|
146
|
+
"homepage": "https://github.com/angular/angular-cli",
|
|
147
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
148
148
|
}
|
|
@@ -12,7 +12,6 @@ const mrmime_1 = require("mrmime");
|
|
|
12
12
|
const promises_1 = require("node:fs/promises");
|
|
13
13
|
const node_path_1 = require("node:path");
|
|
14
14
|
const node_worker_threads_1 = require("node:worker_threads");
|
|
15
|
-
const undici_1 = require("undici");
|
|
16
15
|
/**
|
|
17
16
|
* This is passed as workerData when setting up the worker via the `piscina` package.
|
|
18
17
|
*/
|
|
@@ -45,7 +44,7 @@ function patchFetchToLoadInMemoryAssets() {
|
|
|
45
44
|
const cachedAsset = assetsCache.get(pathname);
|
|
46
45
|
if (cachedAsset) {
|
|
47
46
|
const { content, headers } = cachedAsset;
|
|
48
|
-
return new
|
|
47
|
+
return new Response(content, {
|
|
49
48
|
headers,
|
|
50
49
|
});
|
|
51
50
|
}
|
|
@@ -58,7 +57,7 @@ function patchFetchToLoadInMemoryAssets() {
|
|
|
58
57
|
}
|
|
59
58
|
: undefined;
|
|
60
59
|
assetsCache.set(pathname, { headers, content });
|
|
61
|
-
return new
|
|
60
|
+
return new Response(content, {
|
|
62
61
|
headers,
|
|
63
62
|
});
|
|
64
63
|
};
|