@haste-health/koa-multipart-form 0.4.4 → 0.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @haste-health/koa-multipart-form
2
+
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9fcd8ed: Bump all package minor version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haste-health/koa-multipart-form",
3
- "version": "0.4.4",
3
+ "version": "0.5.0",
4
4
  "dependencies": {
5
5
  "@types/koa": "^2.15.0",
6
6
  "multer": "^2.0.0"
@@ -9,10 +9,10 @@
9
9
  "@types/multer": "^1.4.12",
10
10
  "typescript": "5.9.2"
11
11
  },
12
+ "description": "Koa middleware for handling multipart/form-data, primarily used for file uploads.",
12
13
  "types": "lib/index.d.ts",
13
14
  "main": "lib/index.js",
14
15
  "scripts": {
15
- "build": "tsc",
16
- "publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
16
+ "build": "tsc"
17
17
  }
18
18
  }