@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 CHANGED
@@ -1,32 +1,32 @@
1
1
  <div align="center">
2
- <img alt="Digest Crane" src="https://gitlab.com/digested/node-digest/raw/master/packages/webpack/share/favicon.png" />
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
- <h1>@digest/express</h1>
6
+ <h1>@digest/express</h1>
7
7
  </div>
8
8
 
9
9
  <div align="center">
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>
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
- <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/&#64;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/&#64;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>
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/&#64;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/&#64;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
@@ -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,2 +1,3 @@
1
- declare const history: (baseHref?: string) => import("express-serve-static-core").Router;
1
+ import { type Router } from 'express';
2
+ declare const history: (baseHref?: string) => Router;
2
3
  export default history;
@@ -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;
@@ -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) => import("express-serve-static-core").Router;
3
+ declare const statics: (baseHref: string, staticPath: string, production?: boolean, serveStaticOptions?: ServeStaticOptions) => Router;
3
4
  export default statics;
@@ -1,2 +1,3 @@
1
- declare const stats: () => import("express-serve-static-core").Router;
1
+ import { type Router } from 'express';
2
+ declare const stats: () => Router;
2
3
  export default stats;
package/package.json CHANGED
@@ -1,67 +1,67 @@
1
1
  {
2
- "name": "@digest/express",
3
- "title": "Express Digest",
4
- "license": "LGPL-3.0-or-later",
5
- "version": "4.8.2",
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 'src/**/*.[jt]s?(x)' --ignore-pattern 'src/**/*.(d.ts|json)'",
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.19.2",
52
- "express-static-gzip": "^2.1.7",
53
- "helmet": "^7.1.0",
54
- "serve-static": "^1.15.0"
55
- },
56
- "devDependencies": {
57
- "@types/connect-history-api-fallback": "^1.5.4",
58
- "@types/connect-slashes": "^0.0.36",
59
- "@types/express": "^4.17.21",
60
- "@types/serve-static": "^1.15.7"
61
- },
62
- "keywords": [
63
- "digest",
64
- "express"
65
- ],
66
- "gitHead": "617ecd6370c4c47aa1ef6e3fc1b7bf78bea257ca"
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
  }