alp-body-parser 6.1.0 → 6.1.2

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,22 @@
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.1.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.1.1...alp-body-parser@6.1.2) (2022-10-29)
7
+
8
+ **Note:** Version bump only for package alp-body-parser
9
+
10
+
11
+
12
+
13
+
14
+ ## [6.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.1.0...alp-body-parser@6.1.1) (2022-10-19)
15
+
16
+ **Note:** Version bump only for package alp-body-parser
17
+
18
+
19
+
20
+
21
+
6
22
  # [6.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.6...alp-body-parser@6.1.0) (2022-10-16)
7
23
 
8
24
 
package/README.md CHANGED
@@ -8,6 +8,9 @@
8
8
 
9
9
  <p align="center">
10
10
  <a href="https://npmjs.org/package/alp-body-parser"><img src="https://img.shields.io/npm/v/alp-body-parser.svg?style=flat-square"></a>
11
+ <a href="https://npmjs.org/package/alp-body-parser"><img src="https://img.shields.io/npm/dw/alp-body-parser.svg?style=flat-square"></a>
12
+ <a href="https://npmjs.org/package/alp-body-parser"><img src="https://img.shields.io/node/v/alp-body-parser.svg?style=flat-square"></a>
13
+ <a href="https://npmjs.org/package/alp-body-parser"><img src="https://img.shields.io/npm/types/alp-body-parser.svg?style=flat-square"></a>
11
14
  </p>
12
15
 
13
16
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-body-parser",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "description": "body parser in alp framework",
5
5
  "keywords": [
6
6
  "alp",
@@ -37,16 +37,12 @@
37
37
  "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
38
38
  "build:definitions": "tsc -p tsconfig.build.json",
39
39
  "clean": "yarn clean:build",
40
- "clean:build": "rm -Rf dist",
40
+ "clean:build": "pob-babel-clean-out dist",
41
41
  "lint": "yarn run lint:eslint",
42
42
  "lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-body-parser",
43
43
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
44
44
  },
45
- "prettier": {
46
- "trailingComma": "all",
47
- "singleQuote": true,
48
- "arrowParens": "always"
49
- },
45
+ "prettier": "@pob/root/prettier-config",
50
46
  "pob": {
51
47
  "babelEnvs": [
52
48
  {
@@ -71,9 +67,9 @@
71
67
  "koa": "^2.13.1"
72
68
  },
73
69
  "devDependencies": {
74
- "@babel/core": "7.17.10",
75
- "pob-babel": "34.2.0",
76
- "typescript": "4.6.2"
70
+ "@babel/core": "7.19.3",
71
+ "pob-babel": "34.3.0",
72
+ "typescript": "4.8.4"
77
73
  },
78
- "gitHead": "de936d28d0779f271849b412d8a40ade84f22012"
74
+ "gitHead": "e39c7b67a1da463cbec7753aac9e4253b832f0f8"
79
75
  }
package/rollup.config.mjs DELETED
@@ -1,5 +0,0 @@
1
- import createRollupConfig from 'pob-babel/createRollupConfig.js';
2
-
3
- export default createRollupConfig({
4
- cwd: new URL('.', import.meta.url).pathname,
5
- });
@@ -1,7 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
-
4
- "compilerOptions": {
5
- "noEmit": true
6
- }
7
- }