diff --git a/.changeset/late-seals-travel.md b/.changeset/late-seals-travel.md deleted file mode 100644 index c8c0624f8..000000000 --- a/.changeset/late-seals-travel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@spencer-kit/coder-studio": patch ---- - -Refactor the CLI entry structure so the executable wrapper only launches the command entrypoint, while the reusable CLI logic lives in a separate module. This fixes cases where globally installed `coder-studio` commands could fail to print output because the entry module was misdetected. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index cbc6c1e9d..2bbac6e60 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.1 + +### Patch Changes + +- [#21](https://github.com/spencerkit/coder-studio/pull/21) [`ce9607d`](https://github.com/spencerkit/coder-studio/commit/ce9607daba95019a4a5cdf2a2df8b78fbbf38b53) Thanks [@pallyoung](https://github.com/pallyoung)! - Refactor the CLI entry structure so the executable wrapper only launches the command entrypoint, while the reusable CLI logic lives in a separate module. This fixes cases where globally installed `coder-studio` commands could fail to print output because the entry module was misdetected. + ## 0.3.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 06f40ae62..59de94493 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@spencer-kit/coder-studio", - "version": "0.3.0", + "version": "0.3.1", "type": "module", "description": "Coder Studio CLI - The only published package", "main": "./src/index.ts",