This repository was archived by the owner on Jan 6, 2026. It is now read-only.
Fix floating dependencies CI by replacing meta-updater#1754
Merged
Conversation
Contributor
|
9d812b3 to
5aaa297
Compare
The floating dependencies CI was failing due to peer dependency conflicts between @pnpm/meta-updater and @pnpm/* packages (version mismatches between 1000.x.x and 1001.x.x series). Instead of working around these conflicts, we've replaced the meta-updater entirely with a custom solution. The new implementation uses standard building blocks (globby, read-pkg, write-pkg, handlebars, deepmerge) and runs with Node's --experimental-strip-types flag. It provides identical functionality to the original meta-updater while being more maintainable and eliminating the problematic peer dependencies. Key changes: - Remove .meta-updater/ configuration and @pnpm/meta-updater dependency - Add repo-metadata/lib/package-updater.ts with equivalent functionality - Update package scripts to use the new TypeScript implementation - Configure ESLint to properly handle TypeScript CLI scripts This resolves the floating dependencies test failures while maintaining all existing package convention behaviors.
5aaa297 to
ce43c00
Compare
Merged
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Changes Made
Technical Details
The new implementation maintains all existing functionality:
Test Plan