Update Versions - #68
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changepacks/main
branch
from
September 15, 2026 08:09
f8969b6 to
6c4ad05
Compare
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.
Changepacks
devup-mcp@0.8.0 → 0.9.0 - crates/devup-mcp/Cargo.toml
Minor
Patch
@devup-ui/reset-csshas to be declared to the build plugin or its classes are never emitted, with three settings to add: anincludeentry, anoptimizeDeps.excludeentry and anssr.noExternalentry. None of them are needed. The reset is aglobalCss()call at the top level of that package's own module andresetCss()is an empty function that only keeps the import from being tree-shaken, so the single requirement is that the plugin transforms the package inside node_modules - andcreateNodeModulesExcludeRegexalready allows@devup-uiand@devup-editorthrough that exclusion unconditionally, withincludeonly appending to the list.ssr.noExternalis set from a/@devup-ui/pattern for the same reason. devup-ui's ownapps/landingimportsresetCssin its root layout and passesDevupUI({ singleCss })and nothing else, which is the empirical proof. The advice came from reading one downstream project that had addedincludeand inferring it was required; a single observation of a redundant setting is not evidence that the setting is needed, and the plugin source was three files away. Because devup-mcp vendors these documents into the binary, the wrong recipe was whatdevup_skills installwrote on every machine with no network - the machines least able to check it against the plugin source. Both documents now say the package needs no configuration and say plainly not to add those entries, since writing them teaches the next reader that a devup-ui package needs wiring when none does.