sently 0.9.1 → 0.9.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 +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.9.2] — 2026-08-01
|
|
6
|
+
|
|
7
|
+
### ♻️ Changed
|
|
8
|
+
|
|
9
|
+
- **`bun run verify`** — runs `site:build` before tests so static-export and
|
|
10
|
+
docs-site failures block pack/publish
|
|
11
|
+
- **CI Actions** — `actions/checkout` and `actions/setup-node` to v7; Node smoke
|
|
12
|
+
job on Node 24 (drops the Node 24 force-env workaround)
|
|
13
|
+
|
|
14
|
+
### 🐛 Fixed
|
|
15
|
+
|
|
16
|
+
- **Apple touch icon** — mark `apple-icon` as force-static so `output: "export"`
|
|
17
|
+
can prerender it during `site:build`
|
|
18
|
+
|
|
5
19
|
## [0.9.1] — 2026-08-01
|
|
6
20
|
|
|
7
21
|
### 🐛 Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sently",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Runtime-agnostic messaging library for Node.js, Bun, Deno, and Cloudflare Workers. Channel-first email, SMS, WhatsApp, and push with pluggable provider transports.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"mcp": "bun tools/mcp/index.ts",
|
|
32
32
|
"site:dev": "bun run --cwd site dev",
|
|
33
33
|
"site:build": "bun run --cwd site build",
|
|
34
|
-
"verify": "bun run lint && bun run typecheck && bun run build && bun test",
|
|
34
|
+
"verify": "bun run lint && bun run typecheck && bun run build && bun run site:build && bun test",
|
|
35
35
|
"prepack": "bun run verify",
|
|
36
36
|
"pack:npm": "npm pack --dry-run --cache ./.npm-cache",
|
|
37
37
|
"publish:npm-d": "npm publish --dry-run --cache ./.npm-cache",
|