Bump all packages to 0.1.1-beta.1 (fix broken workspace:* deps) - #33
Merged
Conversation
…cies The first real npm publish used raw `npm publish` per-package, which does not rewrite pnpm's workspace:* protocol specifiers into resolved semver ranges before publishing. Every published package with an internal @vayo-hq/* dependency was left completely uninstallable (EUNSUPPORTEDPROTOCOL) for any real external consumer. Republished all 9 packages at 0.1.1-beta.1 using `pnpm publish`, which correctly resolves workspace:* to real versions. Verified with a fresh `npm install` into a throwaway project - no workspace: leftovers, and the vayo CLI binary runs. This commit reconciles git with what's now live on the registry.
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
0.1.1-beta.1viapnpm publish(not rawnpm publish), which correctly resolvesworkspace:*to real semver ranges before publishing.0.1.1-beta.0publish (rawnpm publish) shipped every internal@vayo-hq/*dependency as a literal, unresolved"workspace:*"string — completely uninstallable by any real consumer (EUNSUPPORTEDPROTOCOL). Those old versions stay published as-is (npm never allows deleting/overwriting a version) but should not be used.changeset versionbump + changelogs for all 9 packages.Test plan
pnpm buildsucceeds at the new versionpnpm packconfirmedworkspace:*→ real resolved version in the tarball's package.json before publishingnpm install @vayo-hq/cli@beta @vayo-hq/capture-express@beta @vayo-hq/db-mongo@betainto a throwaway project succeeds with zeroworkspace:leftoversvayo --helpruns correctly from the installed CLI binary