@homeflare/alchemy 0.1.1 → 0.1.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/README.md +12 -2
- package/package.json +1 -6
package/README.md
CHANGED
|
@@ -3,9 +3,14 @@
|
|
|
3
3
|
Custom [Alchemy](https://alchemy.run) providers for gaps the vendor SDK leaves.
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
|
-
bun add @homeflare/alchemy alchemy
|
|
6
|
+
bun add @homeflare/alchemy alchemy@2.0.0-beta.77 effect@4.0.0-rc.112 \
|
|
7
|
+
@effect/platform-node@4.0.0-rc.112 cloudflare@4.5.0
|
|
7
8
|
```
|
|
8
9
|
|
|
10
|
+
⛔ **Every one of those is required, and you also need an `overrides` block** — see
|
|
11
|
+
[Peers](#peers--and-one-override-you-need) below. The install succeeds without them and
|
|
12
|
+
the import throws.
|
|
13
|
+
|
|
9
14
|
★ **Why a custom provider at all.** When Alchemy has no property for something, the
|
|
10
15
|
alternative is a runbook step a human runs once — and a plan can never show a missing
|
|
11
16
|
runbook step. Covering the gap with a resource means the drift is visible in `plan` like
|
|
@@ -54,7 +59,7 @@ like a bad credential.
|
|
|
54
59
|
|
|
55
60
|
```sh
|
|
56
61
|
bun add @homeflare/alchemy alchemy@2.0.0-beta.77 effect@4.0.0-rc.112 \
|
|
57
|
-
@effect/platform-node@4.0.0-rc.112
|
|
62
|
+
@effect/platform-node@4.0.0-rc.112 cloudflare@4.5.0
|
|
58
63
|
```
|
|
59
64
|
|
|
60
65
|
⚠️ Peers, not dependencies: Alchemy's resource registry and Effect's context both break if
|
|
@@ -90,6 +95,11 @@ that holds the set together.
|
|
|
90
95
|
`Cloudflare/Workers/WorkerBridge → @effect/platform-node/NodeServices` even when you only
|
|
91
96
|
import the Proxmox subpath.
|
|
92
97
|
|
|
98
|
+
⚠️ So is `cloudflare`. It was marked optional in 0.1.1, which claimed the `/cloudflare`
|
|
99
|
+
subpath would degrade without it — measured 2026-09-16, the subpath does not load at all:
|
|
100
|
+
`Cannot find package 'cloudflare'`. An optional peer should mean a feature is absent, not
|
|
101
|
+
that an import fails.
|
|
102
|
+
|
|
93
103
|
## License
|
|
94
104
|
|
|
95
105
|
MIT © Timothy Schneider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homeflare/alchemy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Custom Alchemy providers for Cloudflare, Proxmox, OpenBao, Forgejo and Talos.",
|
|
5
5
|
"homepage": "https://github.com/taslabs-net/homeflare-kit/tree/main/packages/alchemy#readme",
|
|
6
6
|
"bugs": "https://github.com/taslabs-net/homeflare-kit/issues",
|
|
@@ -54,10 +54,5 @@
|
|
|
54
54
|
"alchemy": "2.0.0-beta.77",
|
|
55
55
|
"cloudflare": ">=4.5.0",
|
|
56
56
|
"effect": "4.0.0-rc.112"
|
|
57
|
-
},
|
|
58
|
-
"peerDependenciesMeta": {
|
|
59
|
-
"cloudflare": {
|
|
60
|
-
"optional": true
|
|
61
|
-
}
|
|
62
57
|
}
|
|
63
58
|
}
|