alp-body-parser 8.1.0 → 9.0.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/CHANGELOG.md +21 -0
- package/README.md +1 -1
- package/package.json +6 -6
- package/src/.eslintrc.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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
|
+
## [9.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.1...alp-body-parser@9.0.0) (2024-01-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* merge to alp-node to improve maintenability, remove alp-types
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* merge to alp-node to improve maintenability, remove alp-types ([ead9a2f](https://github.com/christophehurpeau/alp/commit/ead9a2fd1bcbedce0be29ea0e444c5cead99c64d))
|
|
16
|
+
|
|
17
|
+
Version bump for dependency: alp-node
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [8.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.0...alp-body-parser@8.1.1) (2024-01-06)
|
|
21
|
+
|
|
22
|
+
Note: no notable changes
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
6
27
|
## [8.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.0.1...alp-body-parser@8.1.0) (2023-12-25)
|
|
7
28
|
|
|
8
29
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-body-parser",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "body parser in alp framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"alp",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=18.12.0"
|
|
23
23
|
},
|
|
24
|
+
"sideEffects": false,
|
|
24
25
|
"main": "./dist/index-node18.mjs",
|
|
25
26
|
"types": "./dist/definitions/index.d.ts",
|
|
26
27
|
"exports": {
|
|
@@ -32,7 +33,6 @@
|
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
35
|
},
|
|
35
|
-
"sideEffects": false,
|
|
36
36
|
"files": [
|
|
37
37
|
"src",
|
|
38
38
|
"dist"
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-body-parser",
|
|
47
47
|
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
|
|
48
48
|
},
|
|
49
|
-
"prettier": "@pob/root/prettier-config",
|
|
50
49
|
"pob": {
|
|
51
50
|
"babelEnvs": [
|
|
52
51
|
{
|
|
@@ -58,8 +57,9 @@
|
|
|
58
57
|
"index"
|
|
59
58
|
]
|
|
60
59
|
},
|
|
60
|
+
"prettier": "@pob/root/prettier-config",
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"alp-node": "^
|
|
62
|
+
"alp-node": "^7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@types/co-body": "^6.0.0",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"koa": "^2.13.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@babel/core": "7.23.
|
|
72
|
-
"pob-babel": "38.0.
|
|
71
|
+
"@babel/core": "7.23.7",
|
|
72
|
+
"pob-babel": "38.0.2",
|
|
73
73
|
"typescript": "5.3.3"
|
|
74
74
|
}
|
|
75
75
|
}
|