@middy/http-multipart-body-parser 2.5.1 → 2.5.5
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/README.md +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ If you really have to deal with big files, then you might also want to consider
|
|
|
56
56
|
|
|
57
57
|
```javascript
|
|
58
58
|
import middy from '@middy/core'
|
|
59
|
-
import
|
|
59
|
+
import httpMultipartBodyParser from '@middy/http-multipart-body-parser'
|
|
60
60
|
const handler = middy((event, context) => {
|
|
61
61
|
return {}
|
|
62
62
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/http-multipart-body-parser",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"description": "Http event normalizer middleware for the middy framework",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"engines": {
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/middyjs/middy#readme",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@middy/util": "^2.5.
|
|
49
|
+
"@middy/util": "^2.5.5",
|
|
50
50
|
"busboy": "0.3.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@middy/core": "^2.5.
|
|
53
|
+
"@middy/core": "^2.5.5",
|
|
54
54
|
"http-errors": "^1.8.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b84840ec8afd289f6decfd0d645be4899051792d"
|
|
57
57
|
}
|