@modern-js/plugin-express 1.4.3 → 1.4.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @modern-js/plugin-express
2
2
 
3
+ ## 1.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - bebb39b6: chore: improve devDependencies and peerDependencies
8
+ - Updated dependencies [132f7b53]
9
+ - @modern-js/utils@1.3.7
10
+
3
11
  ## 1.4.3
4
12
 
5
13
  ### Patch Changes
@@ -1,4 +1,3 @@
1
- // eslint-disable-next-line filenames/match-exported
2
1
  import plugin from "./plugin";
3
2
  export * from "./context";
4
3
  export default plugin;
@@ -24,6 +24,5 @@ Object.keys(_context).forEach(function (key) {
24
24
 
25
25
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
26
26
 
27
- // eslint-disable-next-line filenames/match-exported
28
27
  var _default = _plugin.default;
29
28
  exports.default = _default;
package/jest.config.js CHANGED
@@ -2,7 +2,6 @@ const sharedConfig = require('@scripts/jest-config');
2
2
 
3
3
  /** @type {import('@jest/types').Config.InitialOptions} */
4
4
  module.exports = {
5
- // eslint-disable-next-line node/no-unsupported-features/es-syntax
6
5
  ...sharedConfig,
7
6
  rootDir: __dirname,
8
7
  };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.4.3",
14
+ "version": "1.4.4",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@babel/runtime": "^7.15.3",
37
37
  "@modern-js/adapter-helpers": "^1.2.1",
38
- "@modern-js/utils": "^1.3.6",
38
+ "@modern-js/utils": "^1.3.7",
39
39
  "cookie-parser": "^1.4.5",
40
40
  "finalhandler": "^1.1.2",
41
41
  "formidable": "^1.2.2",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "express": "^4.17.1",
48
- "@modern-js/server-utils": "^1.2.1",
48
+ "@modern-js/server-utils": "^1.2.2",
49
49
  "@types/cookie-parser": "^1.4.2",
50
50
  "@types/express": "^4.17.13",
51
51
  "@types/finalhandler": "^1.1.1",
@@ -56,10 +56,10 @@
56
56
  "@types/type-is": "^1.6.3",
57
57
  "supertest": "^6.1.6",
58
58
  "typescript": "^4",
59
- "@modern-js/core": "^1.6.0",
59
+ "@modern-js/core": "1.6.1",
60
60
  "@scripts/build": "0.0.0",
61
61
  "jest": "^27",
62
- "@modern-js/server-core": "^1.2.4",
62
+ "@modern-js/server-core": "1.2.5",
63
63
  "@scripts/jest-config": "0.0.0"
64
64
  },
65
65
  "modernConfig": {
@@ -3,7 +3,6 @@
3
3
  import { match } from '@modern-js/bff-runtime';
4
4
  import { useContext } from '../../../../../src/context';
5
5
 
6
- // eslint-disable-next-line arrow-body-style
7
6
  export const get = ({ query }: { query: Record<string, unknown> }) => {
8
7
  return { query };
9
8
  };