@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 CHANGED
@@ -1,2 +1,3 @@
1
- declare const app: import("express-serve-static-core").Express;
1
+ import { type Express } from 'express';
2
+ declare const app: Express;
2
3
  export default app;
@@ -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) => import("express-serve-static-core").Router;
3
+ declare const dev: (compiler: Compiler, baseHref: string, publicPath?: string) => Router;
3
4
  export default dev;
@@ -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) => import("express-serve-static-core").Router;
3
+ declare const hot: (compiler: Compiler, baseHref: string, hotPath?: string) => Router;
3
4
  export default hot;
@@ -1,2 +1,3 @@
1
- declare const routers: import("express-serve-static-core").Router;
1
+ import { type Router } from 'express';
2
+ declare const routers: Router;
2
3
  export default routers;
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.8.2",
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.3.0",
51
+ "webpack-dev-middleware": "^7.4.2",
52
52
  "webpack-hot-middleware": "^2.26.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@types/express": "^4.17.21",
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": "617ecd6370c4c47aa1ef6e3fc1b7bf78bea257ca"
63
+ "gitHead": "b688a4c51cca87f2d45d389717dd3e879fcde057"
64
64
  }