@digest/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/history.d.ts +2 -1
- package/dist/routers/index.d.ts +2 -1
- package/dist/routers/statics.d.ts +2 -1
- package/dist/routers/stats.d.ts +2 -1
- package/package.json +65 -65
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/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/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/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/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type Router } from 'express';
|
|
1
2
|
import { type ServeStaticOptions } from 'serve-static';
|
|
2
|
-
declare const statics: (baseHref: string, staticPath: string, production?: boolean, serveStaticOptions?: ServeStaticOptions) =>
|
|
3
|
+
declare const statics: (baseHref: string, staticPath: string, production?: boolean, serveStaticOptions?: ServeStaticOptions) => Router;
|
|
3
4
|
export default statics;
|
package/dist/routers/stats.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
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
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
2
|
+
"name": "@digest/express",
|
|
3
|
+
"title": "Express Digest",
|
|
4
|
+
"license": "LGPL-3.0-or-later",
|
|
5
|
+
"version": "4.9.0",
|
|
6
|
+
"description": "Digested Express 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/history.d.ts",
|
|
19
|
+
"/dist/routers/history.js",
|
|
20
|
+
"/dist/routers/index.d.ts",
|
|
21
|
+
"/dist/routers/index.js",
|
|
22
|
+
"/dist/routers/statics.d.ts",
|
|
23
|
+
"/dist/routers/statics.js",
|
|
24
|
+
"/dist/routers/stats.d.ts",
|
|
25
|
+
"/dist/routers/stats.js",
|
|
26
|
+
"/dist/app.d.ts",
|
|
27
|
+
"/dist/app.js",
|
|
28
|
+
"/dist/server.d.ts",
|
|
29
|
+
"/dist/server.js",
|
|
30
|
+
"COPYING.md",
|
|
31
|
+
"COPYING.LESSER.md"
|
|
32
|
+
],
|
|
33
|
+
"homepage": "https://gitlab.com/digested/node-digest/tree/master/packages/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/scripts": "^4.0.0",
|
|
49
|
+
"connect-history-api-fallback": "^2.0.0",
|
|
50
|
+
"connect-slashes": "^1.4.0",
|
|
51
|
+
"express": "^4.21.1",
|
|
52
|
+
"express-static-gzip": "^2.1.8",
|
|
53
|
+
"helmet": "^8.0.0",
|
|
54
|
+
"serve-static": "^1.16.2"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/connect-history-api-fallback": "^1.5.4",
|
|
58
|
+
"@types/connect-slashes": "^0.0.36",
|
|
59
|
+
"@types/express": "^5.0.0",
|
|
60
|
+
"@types/serve-static": "^1.15.7"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"digest",
|
|
64
|
+
"express"
|
|
65
|
+
],
|
|
66
|
+
"gitHead": "3adbdb9c769b07590ee9f012304455e0f26a4d03"
|
|
67
67
|
}
|