pompelmi 0.3.6 → 0.4.0-1754340686

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/README.md +5 -3
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -53,6 +53,8 @@
53
53
  <img alt="node" src="https://img.shields.io/node/v/pompelmi">
54
54
  <img alt="types" src="https://img.shields.io/badge/types-TypeScript-3178C6?logo=typescript&logoColor=white">
55
55
  <img alt="status" src="https://img.shields.io/badge/channel-alpha-orange">
56
+ <img alt="coverage" src="https://img.shields.io/github/actions/workflow/status/pompelmi/pompelmi/ci.yml?branch=main&label=coverage&style=flat-square" />
57
+
56
58
  </p>
57
59
 
58
60
  ## Installation
@@ -455,12 +457,12 @@ PRs and issues are welcome!
455
457
 
456
458
  ## Versioning
457
459
 
458
- Channel: **`0.3.6`**
459
- Expect minor API changes before a stable `0.3.6`.
460
+ Channel: **`0.4.0`**
461
+ Expect minor API changes before a stable `0.4.0`.
460
462
 
461
463
  Suggested publish:
462
464
  ```bash
463
- npm version 0.3.6
465
+ npm version 0.4.0
464
466
  npm publish --tag next
465
467
  ```
466
468
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pompelmi",
3
- "version": "0.3.6",
3
+ "version": "0.4.0-1754340686",
4
4
  "description": "Prototipo di scanner di file lato cliente",
5
5
  "main": "dist/pompelmi.cjs.js",
6
6
  "module": "dist/pompelmi.esm.js",
@@ -15,7 +15,10 @@
15
15
  "prepublishOnly": "npm run build",
16
16
  "yara:node:smoke": "tsx scripts/yara-node-smoke.ts",
17
17
  "yara:int:smoke": "tsx scripts/yara-integration-smoke.ts",
18
- "dev:remote": "tsx examples/remote-yara-server.ts"
18
+ "dev:remote": "tsx examples/remote-yara-server.ts",
19
+ "docs:build": "hugo -s docs -D -d docs",
20
+ "predocs:deploy": "npm run docs:build",
21
+ "docs:deploy": "gh-pages -d docs -b gh-pages"
19
22
  },
20
23
  "license": "MIT",
21
24
  "devDependencies": {
@@ -35,11 +38,13 @@
35
38
  "@types/unzipper": "^0.10.11",
36
39
  "cors": "^2.8.5",
37
40
  "express": "^5.1.0",
41
+ "gh-pages": "^6.3.0",
38
42
  "multer": "^2.0.2",
39
43
  "react": "^18.0.0",
40
44
  "react-dom": "^18.0.0",
41
45
  "rollup": "^4.x",
42
46
  "rollup-plugin-peer-deps-external": "^2.2.4",
47
+ "tslib": "^2.8.1",
43
48
  "tsx": "^4.20.3",
44
49
  "typescript": "^4.9.5"
45
50
  },
@@ -99,5 +104,9 @@
99
104
  "private": false,
100
105
  "workspaces": [
101
106
  "packages/*"
102
- ]
107
+ ],
108
+ "repository": {
109
+ "type": "git",
110
+ "url": "https://github.com/pompelmi/pompelmi"
111
+ }
103
112
  }