@iota-uz/sdk 0.4.21 → 0.4.23
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 +4 -5
- package/dist/bichat/index.cjs +125 -248
- package/dist/bichat/index.cjs.map +1 -1
- package/dist/bichat/index.d.cts +16 -14
- package/dist/bichat/index.d.ts +16 -14
- package/dist/bichat/index.mjs +126 -249
- package/dist/bichat/index.mjs.map +1 -1
- package/dist/bichat/tailwind.cjs +0 -8
- package/dist/bichat/tailwind.cjs.map +1 -1
- package/dist/bichat/tailwind.mjs +0 -8
- package/dist/bichat/tailwind.mjs.map +1 -1
- package/package.json +2 -1
- package/tailwind/compiled.css +1 -1
- package/tailwind/create-config.cjs +50 -2
- package/tailwind/sdk-content.cjs +177 -0
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 link --sdk-root ../../applets
|
|
56
|
+
applet sdk unlink
|
|
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,15 +67,14 @@ 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 overrides:** `applet sdk link` writes local-only settings to `.applets/local.env` (gitignored) and avoids committing link overrides into package manifests/lockfiles.
|
|
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
|
|
78
|
-
- Never commit local `pnpm` overrides/workspace links for `@iota-uz/sdk`.
|
|
77
|
+
- Local SDK iteration should use `applet sdk link --sdk-root ../../applets` and `applet sdk unlink` instead of committing `pnpm` overrides/workspace links.
|
|
79
78
|
- `applet dev` now detects `go.work` dependencies and automatically watches/restarts critical processes when dependency code changes.
|
|
80
79
|
- Keep `.applets/local.env` local-only. It is intentionally gitignored and must not be committed.
|
|
81
80
|
|