alp-body-parser 6.0.0 → 6.0.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
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.4](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.3...alp-body-parser@6.0.4) (2022-02-20)
7
+
8
+ **Note:** Version bump only for package alp-body-parser
9
+
10
+
11
+
12
+
13
+
14
+ ## [6.0.3](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.2...alp-body-parser@6.0.3) (2022-02-13)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * dont override react/react-in-jsx-scope ([5d21c9e](https://github.com/christophehurpeau/alp/commit/5d21c9ece092cd3397d1794211dae17cea6649f8))
20
+
21
+
22
+
23
+
24
+
25
+ ## [6.0.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.1...alp-body-parser@6.0.2) (2022-02-06)
26
+
27
+ **Note:** Version bump only for package alp-body-parser
28
+
29
+
30
+
31
+
32
+
33
+ ## [6.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.0...alp-body-parser@6.0.1) (2022-01-15)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * update peer dependencies ([74892bc](https://github.com/christophehurpeau/alp/commit/74892bc8dd99ca862ba427914eb893b083e9b9da))
39
+
40
+
41
+
42
+
43
+
6
44
  # [6.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.2.1...alp-body-parser@6.0.0) (2022-01-02)
7
45
 
8
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-body-parser",
3
- "version": "6.0.0",
3
+ "version": "6.0.4",
4
4
  "description": "body parser in alp framework",
5
5
  "keywords": [
6
6
  "alp",
@@ -34,12 +34,13 @@
34
34
  "module:node": "./dist/index-node14.mjs",
35
35
  "sideEffects": false,
36
36
  "scripts": {
37
- "build": "pob-build && yarn run build:definitions",
37
+ "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
38
38
  "build:definitions": "tsc -p tsconfig.build.json",
39
- "clean": "rm -Rf dist",
39
+ "clean": "yarn clean:build",
40
+ "clean:build": "rm -Rf dist",
40
41
  "lint": "yarn run lint:eslint",
41
42
  "lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-body-parser",
42
- "watch": "pob-watch"
43
+ "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
43
44
  },
44
45
  "prettier": {
45
46
  "trailingComma": "all",
@@ -61,7 +62,7 @@
61
62
  ]
62
63
  },
63
64
  "peerDependencies": {
64
- "alp-node": "^3.0.1"
65
+ "alp-node": "^4.0.2"
65
66
  },
66
67
  "dependencies": {
67
68
  "@types/co-body": "^6.0.0",
@@ -70,9 +71,9 @@
70
71
  "koa": "^2.13.1"
71
72
  },
72
73
  "devDependencies": {
73
- "@babel/core": "7.16.7",
74
- "pob-babel": "29.6.1",
75
- "typescript": "4.5.4"
74
+ "@babel/core": "7.17.5",
75
+ "pob-babel": "32.2.0",
76
+ "typescript": "4.5.5"
76
77
  },
77
- "gitHead": "854189ce2307f42363e81bcf7862c5f1deced54a"
78
+ "gitHead": "5743ca423201457801590e12f607b1a60f7fa51a"
78
79
  }
package/rollup.config.mjs CHANGED
@@ -1,3 +1,5 @@
1
1
  import createRollupConfig from 'pob-babel/createRollupConfig.js';
2
2
 
3
- export default createRollupConfig({});
3
+ export default createRollupConfig({
4
+ cwd: new URL('.', import.meta.url).pathname,
5
+ });
@@ -2,7 +2,7 @@
2
2
  "root": true,
3
3
  "parser": "@typescript-eslint/parser",
4
4
  "parserOptions": {
5
- "project": "packages/alp-body-parser/tsconfig.json"
5
+ "project": "packages/alp-body-parser/tsconfig.eslint.json"
6
6
  },
7
7
  "plugins": ["@typescript-eslint"],
8
8
  "extends": [
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+
4
+ "compilerOptions": {
5
+ "noEmit": true
6
+ }
7
+ }