@digest/webpack-express 4.8.2 → 4.9.0-next.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/dist/app.d.ts +2 -1
- package/dist/routers/dev.d.ts +2 -1
- package/dist/routers/hot.d.ts +2 -1
- package/dist/routers/index.d.ts +2 -1
- package/package.json +4 -4
package/dist/app.d.ts
CHANGED
package/dist/routers/dev.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type Router } from 'express';
|
|
1
2
|
import { type Compiler } from 'webpack';
|
|
2
|
-
declare const dev: (compiler: Compiler, baseHref: string, publicPath?: string) =>
|
|
3
|
+
declare const dev: (compiler: Compiler, baseHref: string, publicPath?: string) => Router;
|
|
3
4
|
export default dev;
|
package/dist/routers/hot.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type Router } from 'express';
|
|
1
2
|
import { type Compiler } from 'webpack';
|
|
2
|
-
declare const hot: (compiler: Compiler, baseHref: string, hotPath?: string) =>
|
|
3
|
+
declare const hot: (compiler: Compiler, baseHref: string, hotPath?: string) => Router;
|
|
3
4
|
export default hot;
|
package/dist/routers/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@digest/webpack-express",
|
|
3
3
|
"title": "Express Webpack Middleware Digest",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.9.0-next.1",
|
|
6
6
|
"description": "Digested Express Webpack middleware configurations",
|
|
7
7
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
8
8
|
"contributors": [
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"@digest/express": "^4.0.0",
|
|
49
49
|
"@digest/scripts": "^4.0.0",
|
|
50
50
|
"@digest/webpack": "^4.0.0",
|
|
51
|
-
"webpack-dev-middleware": "^7.
|
|
51
|
+
"webpack-dev-middleware": "^7.4.2",
|
|
52
52
|
"webpack-hot-middleware": "^2.26.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@types/express": "^
|
|
55
|
+
"@types/express": "^5.0.0",
|
|
56
56
|
"@types/webpack": "^5.28.5"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"express",
|
|
61
61
|
"webpack"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b688a4c51cca87f2d45d389717dd3e879fcde057"
|
|
64
64
|
}
|