@digest/webpack-express 4.8.2 → 4.9.0
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/README.md +19 -19
- 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 +62 -62
package/README.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
|
|
2
|
+
<img alt="Digest Crane" src="https://gitlab.com/digested/node-digest/raw/master/packages/webpack/share/favicon.png" />
|
|
3
3
|
</div><br>
|
|
4
4
|
|
|
5
5
|
<div align="center">
|
|
6
|
-
|
|
6
|
+
<h1>@digest/webpack-express</h1>
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
9
|
<div align="center">
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
<a href="https://commitizen.github.io/cz-cli/"><img alt="Commitizen Friendly" src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?maxAge=2592000" /></a>
|
|
11
|
+
<a href="https://github.com/semantic-release/semantic-release"><img alt="Semantic Release" src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?maxAge=2592000" /></a>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
<div align="center">
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
15
|
+
<a href="https://gitlab.com/digested/node-digest/-/commits/master" target="_blank">
|
|
16
|
+
<img alt="Status" aria-hidden="" src="https://gitlab.com/digested/node-digest/badges/master/pipeline.svg">
|
|
17
|
+
</a>
|
|
18
|
+
<a href="https://digested.gitlab.io/node-digest/coverage">
|
|
19
|
+
<img alt="Coverage Report" src="https://gitlab.com/digested/node-digest/badges/master/coverage.svg" />
|
|
20
|
+
</a>
|
|
21
|
+
<a href="https://www.npmjs.org/package/@digest/webpack">
|
|
22
|
+
<img alt="NPM Version" src="http://img.shields.io/npm/v/@digest/webpack-express.svg?maxAge=86400" />
|
|
23
|
+
</a>
|
|
24
|
+
<a href="https://www.gnu.org/licenses/lgpl-3.0.en.html">
|
|
25
|
+
<img alt="License LGPL 3.0 or later" src="https://img.shields.io/npm/l/@digest/webpack-express.svg?maxAge=2592000" />
|
|
26
|
+
</a>
|
|
27
|
+
<a href="https://github.com/gajus/eslint-config-canonical">
|
|
28
|
+
<img alt="Code Style Canonical" src="https://img.shields.io/badge/code%20style-canonical-blue.svg?maxAge=2592000" />
|
|
29
|
+
</a>
|
|
30
30
|
</div>
|
|
31
31
|
<br />
|
|
32
32
|
<br />
|
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
|
@@ -1,64 +1,64 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
2
|
+
"name": "@digest/webpack-express",
|
|
3
|
+
"title": "Express Webpack Middleware Digest",
|
|
4
|
+
"license": "LGPL-3.0-or-later",
|
|
5
|
+
"version": "4.9.0",
|
|
6
|
+
"description": "Digested Express Webpack middleware configurations",
|
|
7
|
+
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
8
|
+
"contributors": [
|
|
9
|
+
{
|
|
10
|
+
"name": "Connor Schlesiger",
|
|
11
|
+
"email": "connor@schlesiger.ca",
|
|
12
|
+
"position": "Initial and Lead Developer"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"main": "dist/app.js",
|
|
16
|
+
"types": "dist/app.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"/dist/routers/dev.d.ts",
|
|
19
|
+
"/dist/routers/dev.js",
|
|
20
|
+
"/dist/routers/hot.d.ts",
|
|
21
|
+
"/dist/routers/hot.js",
|
|
22
|
+
"/dist/routers/index.d.ts",
|
|
23
|
+
"/dist/routers/index.js",
|
|
24
|
+
"/dist/routers/webpack.d.ts",
|
|
25
|
+
"/dist/routers/webpack.js",
|
|
26
|
+
"/dist/util/webpack.d.ts",
|
|
27
|
+
"/dist/util/webpack.js",
|
|
28
|
+
"/dist/app.d.ts",
|
|
29
|
+
"/dist/app.js",
|
|
30
|
+
"COPYING.md",
|
|
31
|
+
"COPYING.LESSER.md"
|
|
32
|
+
],
|
|
33
|
+
"homepage": "https://gitlab.com/digested/node-digest/tree/master/packages/webpack-express",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://gitlab.com/digested/node-digest.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://gitlab.com/digested/node-digest/issues"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsc",
|
|
43
|
+
"lint": "run-p lint:es",
|
|
44
|
+
"lint:es": "eslint",
|
|
45
|
+
"clean": "rimraf node_modules dist package-lock.json npm-debug.log"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@digest/express": "^4.0.0",
|
|
49
|
+
"@digest/scripts": "^4.0.0",
|
|
50
|
+
"@digest/webpack": "^4.0.0",
|
|
51
|
+
"webpack-dev-middleware": "^7.4.2",
|
|
52
|
+
"webpack-hot-middleware": "^2.26.1"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/express": "^5.0.0",
|
|
56
|
+
"@types/webpack": "^5.28.5"
|
|
57
|
+
},
|
|
58
|
+
"keywords": [
|
|
59
|
+
"digest",
|
|
60
|
+
"express",
|
|
61
|
+
"webpack"
|
|
62
|
+
],
|
|
63
|
+
"gitHead": "3adbdb9c769b07590ee9f012304455e0f26a4d03"
|
|
64
64
|
}
|