@serwist/webpack-plugin 9.0.9 → 9.0.11
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/webpack-plugin",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A plugin for your webpack build process, helping you generate a manifest of local files that should be precached.",
|
|
6
6
|
"files": [
|
|
@@ -60,16 +60,16 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"pretty-bytes": "6.1.1",
|
|
62
62
|
"zod": "3.23.8",
|
|
63
|
-
"@serwist/build": "9.0.
|
|
63
|
+
"@serwist/build": "9.0.11"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@types/node": "22.
|
|
66
|
+
"@types/node": "22.10.1",
|
|
67
67
|
"@types/webpack": "5.28.5",
|
|
68
|
-
"rollup": "4.
|
|
69
|
-
"typescript": "5.6.
|
|
70
|
-
"webpack": "5.
|
|
71
|
-
"@serwist/configs": "9.0.
|
|
72
|
-
"@serwist/utils": "9.0.
|
|
68
|
+
"rollup": "4.28.0",
|
|
69
|
+
"typescript": "5.6.3",
|
|
70
|
+
"webpack": "5.97.1",
|
|
71
|
+
"@serwist/configs": "9.0.11",
|
|
72
|
+
"@serwist/utils": "9.0.11"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"typescript": ">=5.0.0",
|
|
@@ -3,14 +3,14 @@ import type { WebpackPlugin } from "./types.js";
|
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Perform a child compilation.
|
|
6
|
-
*
|
|
6
|
+
*
|
|
7
7
|
* @param compiler The parent webpack compiler.
|
|
8
8
|
* @param compilation The webpack compilation.
|
|
9
9
|
* @param name The name of the child compiler.
|
|
10
10
|
* @param src The source file. Should be absolute.
|
|
11
11
|
* @param dest The destination file. Should be relative to the compilation.
|
|
12
12
|
* @param plugins Additional webpack plugins.
|
|
13
|
-
*
|
|
13
|
+
*
|
|
14
14
|
* @private
|
|
15
15
|
*/
|
|
16
16
|
export const performChildCompilation = async (
|