@feathersjs/express
Advanced tools
Comparing version 5.0.0-pre.11 to 5.0.0-pre.14
@@ -6,2 +6,26 @@ # Change Log | ||
# [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13) | ||
**Note:** Version bump only for package @feathersjs/express | ||
# [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13) | ||
**Note:** Version bump only for package @feathersjs/express | ||
# [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12) | ||
**Note:** Version bump only for package @feathersjs/express | ||
# [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06) | ||
@@ -8,0 +32,0 @@ |
@@ -6,5 +6,5 @@ import express, { Express, static as _static, json, raw, text, urlencoded, query } from 'express'; | ||
import { parseAuthentication, authenticate } from './authentication'; | ||
export { _static as static, json, raw, text, urlencoded, query, errorHandler, notFound, express as original, authenticate, parseAuthentication }; | ||
export { _static as serveStatic, _static as static, json, raw, text, urlencoded, query, errorHandler, notFound, express as original, authenticate, parseAuthentication }; | ||
export * from './rest'; | ||
export * from './declarations'; | ||
export default function feathersExpress<S = any, C = any>(feathersApp?: FeathersApplication<S, C>, expressApp?: Express): Application<S, C>; |
@@ -25,5 +25,6 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.parseAuthentication = exports.authenticate = exports.original = exports.notFound = exports.errorHandler = exports.query = exports.urlencoded = exports.text = exports.raw = exports.json = exports.static = void 0; | ||
exports.parseAuthentication = exports.authenticate = exports.original = exports.notFound = exports.errorHandler = exports.query = exports.urlencoded = exports.text = exports.raw = exports.json = exports.static = exports.serveStatic = void 0; | ||
const express_1 = __importStar(require("express")); | ||
exports.original = express_1.default; | ||
Object.defineProperty(exports, "serveStatic", { enumerable: true, get: function () { return express_1.static; } }); | ||
Object.defineProperty(exports, "static", { enumerable: true, get: function () { return express_1.static; } }); | ||
@@ -30,0 +31,0 @@ Object.defineProperty(exports, "json", { enumerable: true, get: function () { return express_1.json; } }); |
{ | ||
"name": "@feathersjs/express", | ||
"description": "Feathers Express framework bindings and REST provider", | ||
"version": "5.0.0-pre.11", | ||
"version": "5.0.0-pre.14", | ||
"homepage": "https://feathersjs.com", | ||
@@ -52,5 +52,5 @@ "main": "lib/", | ||
"dependencies": { | ||
"@feathersjs/commons": "^5.0.0-pre.11", | ||
"@feathersjs/errors": "^5.0.0-pre.11", | ||
"@feathersjs/transport-commons": "^5.0.0-pre.11", | ||
"@feathersjs/commons": "^5.0.0-pre.14", | ||
"@feathersjs/errors": "^5.0.0-pre.14", | ||
"@feathersjs/transport-commons": "^5.0.0-pre.14", | ||
"@types/express": "^4.17.13", | ||
@@ -61,16 +61,16 @@ "express": "^4.17.1", | ||
"devDependencies": { | ||
"@feathersjs/authentication": "^5.0.0-pre.11", | ||
"@feathersjs/authentication-local": "^5.0.0-pre.11", | ||
"@feathersjs/feathers": "^5.0.0-pre.11", | ||
"@feathersjs/tests": "^5.0.0-pre.11", | ||
"@feathersjs/authentication": "^5.0.0-pre.14", | ||
"@feathersjs/authentication-local": "^5.0.0-pre.14", | ||
"@feathersjs/feathers": "^5.0.0-pre.14", | ||
"@feathersjs/tests": "^5.0.0-pre.14", | ||
"@types/mocha": "^9.0.0", | ||
"@types/node": "^16.10.2", | ||
"axios": "^0.21.4", | ||
"@types/node": "^16.10.4", | ||
"axios": "^0.23.0", | ||
"lodash": "^4.17.21", | ||
"mocha": "^9.1.2", | ||
"shx": "^0.3.3", | ||
"ts-node": "^10.2.1", | ||
"typescript": "^4.4.3" | ||
"ts-node": "^10.3.0", | ||
"typescript": "^4.4.4" | ||
}, | ||
"gitHead": "a9f7865cce8db2305b7c0d2ef4a165c2724034ef" | ||
"gitHead": "9bb26276938aead1f3f582be5517a49a8ce00f09" | ||
} |
Sorry, the diff of this file is not supported yet
113614
868