@fatcherjs/middleware-json 3.0.0-alpha-6 → 3.0.0-alpha-8

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/dist/index.esm.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import { readStreamByChunk } from '@fatcherjs/utils-shared';
2
- import 'fatcher';
3
2
 
4
3
  const json = () => {
5
4
  return async (context, next) => {
package/dist/index.js CHANGED
@@ -3,7 +3,6 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var utilsShared = require('@fatcherjs/utils-shared');
6
- require('fatcher');
7
6
 
8
7
  const json = () => {
9
8
  return async (context, next) => {
package/package.json CHANGED
@@ -13,20 +13,19 @@
13
13
  "dist"
14
14
  ],
15
15
  "peerDependencies": {
16
- "fatcher": "3.0.0-alpha-6"
16
+ "fatcher": "3.0.0-alpha-8"
17
17
  },
18
18
  "dependencies": {
19
- "@fatcherjs/utils-shared": "3.0.0-alpha-6"
19
+ "@fatcherjs/utils-shared": "3.0.0-alpha-8"
20
20
  },
21
21
  "devDependencies": {
22
- "fatcher": "3.0.0-alpha-6"
22
+ "fatcher": "3.0.0-alpha-8"
23
23
  },
24
- "version": "3.0.0-alpha-6",
24
+ "version": "3.0.0-alpha-8",
25
25
  "scripts": {
26
26
  "clean": "rimraf dist",
27
27
  "build": "npm run clean && rollup -c rollup.config.ts",
28
28
  "test": "jest",
29
- "test:cov": "jest --coverage",
30
- "tsc": "tsc --noEmit"
29
+ "test:cov": "jest --coverage"
31
30
  }
32
31
  }