chore: add changepacks for the absolute CSS path fixes - #658
Merged
Conversation
Two patch entries, one per package actually changed:
@devup-ui/bun-plugin v1.0.16 -> v1.0.17
@devup-ui/rsbuild-plugin v1.0.62 -> v1.0.63
Generated with `bunx @changepacks/cli`, then narrowed to the changed
packages: `-y` selects all 11 projects, which would publish nine
packages that this branch does not touch. `bunx @changepacks/cli check`
confirms only the two above are marked changed.
Contributor
Changepacks@devup-ui/bun-plugin@1.0.16 → 1.0.17 - packages/bun-plugin/package.jsonPatch
@devup-ui/rsbuild-plugin@1.0.62 → 1.0.63 - packages/rsbuild-plugin/package.jsonPatch
|
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 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.
Follow-up to #657, which merged without changepack entries. Without them the release workflow has nothing to act on, so main still carries the pre-fix versions and no "Update versions" PR is produced.
What this adds
Two patch entries, one per package actually changed by #657:
@devup-ui/bun-plugin@devup-ui/rsbuild-pluginVerified against this branch:
The other nine projects are correctly left untouched.
Note on generation
Generated with
bunx @changepacks/cli, then narrowed.-yselects all 11 projects, which would publish nine packages this change does not touch — worth knowing for anyone scripting it non-interactively.What shipped in #657
Both fixes remove a machine-absolute CSS path from transformed module text:
onResolvereturned<cwd>/df/devup-ui/devup-ui.css, and Bun bakes plugin-resolved specifiers into a machine-wide transpiler cache keyed by module contents alone. Parallel checkouts of one repository share cache entries, so every checkout but the first imported another worktree's stylesheet and its wholebun testrun failed. Now resolved to a virtual namespaced id.cssDirtocodeExtract, making transform output depend on checkout location. Now relative to the importer, matching next/webpack/vite.