pompelmi 0.4.0 → 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.
- package/README.md +7 -6
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</a>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
+
|
|
12
13
|
<h1 align="center">pompelmi</h1>
|
|
13
14
|
|
|
14
15
|
<p align="center">
|
|
@@ -41,10 +42,10 @@
|
|
|
41
42
|
-->
|
|
42
43
|
|
|
43
44
|
<p align="center">
|
|
44
|
-
<a href="https://
|
|
45
|
+
<a href="https://github.com/pompelmi/pompelmi">
|
|
45
46
|
<img alt="npm" src="https://img.shields.io/npm/v/pompelmi?label=pompelmi">
|
|
46
47
|
</a>
|
|
47
|
-
<a href="https://
|
|
48
|
+
<a href="https://github.com/pompelmi/pompelmi">
|
|
48
49
|
<img alt="downloads" src="https://img.shields.io/npm/d18m/pompelmi?label=downloads">
|
|
49
50
|
</a>
|
|
50
51
|
<a href="https://github.com/pompelmi/pompelmi/blob/main/LICENSE">
|
|
@@ -143,7 +144,7 @@ This is a monorepo. The following packages are included:
|
|
|
143
144
|
|
|
144
145
|
| Package | NPM | Description |
|
|
145
146
|
| --- | --- | --- |
|
|
146
|
-
| **`pompelmi`** | <a href="https://
|
|
147
|
+
| **`pompelmi`** | <a href="https://github.com/pompelmi/pompelmi"><img src="https://img.shields.io/npm/v/pompelmi?label=pompelmi" alt="npm"/></a> | Core scanning library (Node + Remote Engine for browsers). |
|
|
147
148
|
| **`@pompelmi/express-middleware`** | *(alpha)* | Express middleware that scans uploads and enforces policies. |
|
|
148
149
|
| **`@pompelmi/koa-middleware`** | *(alpha)* | Koa middleware compatible with `@koa/multer`/`koa-body`. |
|
|
149
150
|
| **`@pompelmi/next-upload`** | *(alpha)* | Next.js (App Router) `POST` handler factory for `/api/upload`. |
|
|
@@ -457,12 +458,12 @@ PRs and issues are welcome!
|
|
|
457
458
|
|
|
458
459
|
## Versioning
|
|
459
460
|
|
|
460
|
-
Channel: **`0.
|
|
461
|
-
Expect minor API changes before a stable `0.
|
|
461
|
+
Channel: **`0.5.0`**
|
|
462
|
+
Expect minor API changes before a stable `0.5.0`.
|
|
462
463
|
|
|
463
464
|
Suggested publish:
|
|
464
465
|
```bash
|
|
465
|
-
npm version 0.
|
|
466
|
+
npm version 0.5.0
|
|
466
467
|
npm publish --tag next
|
|
467
468
|
```
|
|
468
469
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pompelmi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Prototipo di scanner di file lato cliente",
|
|
5
5
|
"main": "dist/pompelmi.cjs.js",
|
|
6
6
|
"module": "dist/pompelmi.esm.js",
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
"workspaces": [
|
|
106
106
|
"packages/*"
|
|
107
107
|
],
|
|
108
|
+
"packageManager": "pnpm@9.12.0",
|
|
108
109
|
"repository": {
|
|
109
110
|
"type": "git",
|
|
110
111
|
"url": "https://github.com/pompelmi/pompelmi"
|