@iota-uz/sdk 0.4.24 → 0.4.26
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 +5 -4
- package/dist/bichat/index.cjs +339 -131
- package/dist/bichat/index.cjs.map +1 -1
- package/dist/bichat/index.d.cts +49 -65
- package/dist/bichat/index.d.ts +49 -65
- package/dist/bichat/index.mjs +340 -132
- package/dist/bichat/index.mjs.map +1 -1
- package/dist/bichat/tailwind.cjs +8 -0
- package/dist/bichat/tailwind.cjs.map +1 -1
- package/dist/bichat/tailwind.mjs +8 -0
- package/dist/bichat/tailwind.mjs.map +1 -1
- package/package.json +1 -1
- package/tailwind/compiled.css +1 -1
package/README.md
CHANGED
|
@@ -52,8 +52,8 @@ applet rpc gen --name <applet-name>
|
|
|
52
52
|
applet rpc check --name <applet-name>
|
|
53
53
|
applet rpc watch --name <applet-name>
|
|
54
54
|
applet deps check
|
|
55
|
-
applet sdk
|
|
56
|
-
applet sdk
|
|
55
|
+
applet sdk local --sdk-root ../../applets
|
|
56
|
+
applet sdk local --off
|
|
57
57
|
applet check # deps + RPC drift for all applets
|
|
58
58
|
applet schema export --name <applet>
|
|
59
59
|
applet dev # start dev environment (all configured applets)
|
|
@@ -67,14 +67,15 @@ applet secrets delete --name <applet> --key OPENAI_API_KEY
|
|
|
67
67
|
|
|
68
68
|
- **Specific version:** `go install github.com/iota-uz/applets/cmd/applet@v0.4.4`
|
|
69
69
|
- **Shell completion:** `applet completion bash`, `applet completion zsh`, or `applet completion fish` — see `applet completion --help` for install instructions.
|
|
70
|
-
- **Local SDK
|
|
70
|
+
- **Local SDK alias mode:** `applet sdk local` writes local-only settings to `.applets/local.env` (gitignored). `applet dev` then injects `IOTA_SDK_DIST` so Vite aliases `@iota-uz/sdk` to your local SDK dist.
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
74
|
## DX Migration Notes (Breaking)
|
|
75
75
|
|
|
76
76
|
- `applets/` is the canonical source of `@iota-uz/sdk`; `iota-sdk/package.json` is no longer the publish source.
|
|
77
|
-
- Local SDK iteration
|
|
77
|
+
- Local SDK iteration uses runtime alias mode only: `applet sdk local --sdk-root ../../applets` and `applet sdk local --off`.
|
|
78
|
+
- Never commit local `pnpm` overrides/workspace links for `@iota-uz/sdk`.
|
|
78
79
|
- `applet dev` now detects `go.work` dependencies and automatically watches/restarts critical processes when dependency code changes.
|
|
79
80
|
- Keep `.applets/local.env` local-only. It is intentionally gitignored and must not be committed.
|
|
80
81
|
|