alp-body-parser 6.0.1 → 6.0.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,14 @@
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.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.1...alp-body-parser@6.0.2) (2022-02-06)
7
+
8
+ **Note:** Version bump only for package alp-body-parser
9
+
10
+
11
+
12
+
13
+
6
14
  ## [6.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.0...alp-body-parser@6.0.1) (2022-01-15)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-body-parser",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
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",
@@ -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.0",
75
+ "pob-babel": "31.0.0",
76
+ "typescript": "4.5.5"
76
77
  },
77
- "gitHead": "a69797c459e219e09fcf22cc2ea46aa60dce396b"
78
+ "gitHead": "1af3cf2eb4bba25ab23f174cda860416ff68a63d"
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
+ });