chore: migrate vitest + @vitest/coverage-v8 to pnpm catalog#619
Closed
meleksomai wants to merge 1 commit intomainfrom
Closed
chore: migrate vitest + @vitest/coverage-v8 to pnpm catalog#619meleksomai wants to merge 1 commit intomainfrom
meleksomai wants to merge 1 commit intomainfrom
Conversation
vitest and @vitest/coverage-v8 were hard-pinned in 47 package.json files. Each new package had to copy the version; each upgrade had to touch every file. One package (@glion/annotate-profile-segments) had silently drifted to 4.1.0 while the rest sat on 4.1.2 — two distinct vitest installs lived in node_modules until pnpm's hoister deduplicated them. Changes: - pnpm-workspace.yaml gains a catalog: block with vitest and @vitest/coverage-v8 at 4.1.2 - All 47 package.json files now reference "vitest": "catalog:" and "@vitest/coverage-v8": "catalog:" - @glion/annotate-profile-segments reconciled from 4.1.0 -> 4.1.2 (its 8 tests pass under the bumped version) - pnpm install removed 44 entries from node_modules (the dup vitest install is gone) No source changes; no public API impact. Future test-tooling additions just reference catalog: and stay aligned. https://claude.ai/code/session_01MvBEUcGkRokNw2GWYVHADg
🦋 Changeset detectedLatest commit: 85c295e The changes in this PR will be included in the next version bump. This PR includes changesets to release 0 packagesWhen changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@glion/ack
@glion/annotate-delimiters
@glion/annotate-profile-context
@glion/annotate-profile-datatypes
@glion/annotate-profile-fields
@glion/annotate-profile-fields-code-systems
@glion/annotate-profile-segments
@glion/ast
@glion/builder
@glion/config
@glion/decode-escapes
@glion/encode-escapes
@glion/cli
@glion/hl7v2
@glion/jsonify
@glion/lint-max-message-size
@glion/lint-message-version
@glion/lint-no-trailing-empty-field
@glion/lint-profile-events-segments-order
@glion/lint-profile-extra-components
@glion/lint-profile-extra-fields
@glion/lint-profile-field-max-length
@glion/lint-profile-field-repetition
@glion/lint-profile-required-components
@glion/lint-profile-required-fields
@glion/lint-profile-table-values
@glion/lint-required-message-header
@glion/lint-segment-header-length
@glion/mllp
@glion/mllp-ack
@glion/mllp-client
@glion/mllp-transport
@glion/parser
@glion/preset-annotate-profile-recommended
@glion/preset-lint-profile-recommended
@glion/preset-lint-recommended
@glion/profiles
@glion/to-hl7v2
@glion/util-query
@glion/util-semver
@glion/util-timestamp
@glion/util-visit
@glion/utils
commit: |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #619 +/- ##
=======================================
Coverage 93.81% 93.81%
=======================================
Files 134 134
Lines 4093 4093
Branches 1051 1051
=======================================
Hits 3840 3840
Misses 253 253 🚀 New features to boost your workflow:
|
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.
Closing per discussion — pnpm catalogs aren't yet adopted in this repo. The decision on whether to migrate is being tracked separately. The branch can be deleted; the changeset and commits are preserved on
claude/catalog-vitest-depsif we want to revisit.