fix(scripts): update publish-cli + e2e-publish for colonyq rename#506
Merged
NagyVikt merged 1 commit intoMay 10, 2026
Merged
Conversation
PR #505 renamed the package to `colonyq` but missed two `pnpm --filter` calls in the publish scripts. Without this fix, `pnpm publish:cli` fails because the filter no longer matches a workspace package. Verified via `pnpm publish:cli:dry-run`: tarball generates correctly as `colonyq-0.7.0.tgz` (422.5 kB packed).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #505 renamed
@imdeadpool/colony-cli→colonyq, but missed twopnpm --filtercalls in the publish scripts. Without this fix,pnpm publish:clifails immediately because the filter doesn't match any workspace package.scripts/publish-cli.shpnpm --filter @imdeadpool/colony-cli stage-publish→pnpm --filter colonyq stage-publishscripts/e2e-publish.shTest plan
pnpm publish:cli:dry-run→ tarball generates ascolonyq-0.7.0.tgz(422.5 kB packed, 1.8 MB unpacked, 23 files); registry would publish undercolonyq@0.7.0Why this wasn't caught in #505
The rename PR's verification ran
pnpm --filter colonyq build/test/typecheckdirectly, which proved the package itself works under the new name. But it didn't exercise the wrapper scripts that drive publish — those still hardcoded the old filter. Adding apnpm publish:cli:dry-runstep to CI would catch this class of issue.🤖 Generated with Claude Code