@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 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 local --sdk-root ../../applets
56
- applet sdk local --off
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 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.
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 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`.
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