chore: trim runtime dependency footprint#639
Open
harlan-zw wants to merge 3 commits into
Open
Conversation
commit: |
@vue/compiler-sfc, oxc-parser, and oxc-walker dedupe against Nuxt's own copies, so optionalizing them saved nothing while adding resolution failure modes. Restore them as direct deps and keep the optional-peer handling for @unocss/*, lightningcss, culori, and tinyglobby.
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.
🔗 Linked issue
None
❓ Type of change
📚 Description
Moves UnoCSS and Lightning CSS packages out of runtime dependencies where Nuxt or the selected CSS provider can supply them, and drops
culoriandtinyglobby(unused). Adds optional module resolution and a packed install smoke test that installs the tarball in clean pnpm and npm consumer apps.@vue/compiler-sfc,oxc-parser, andoxc-walkerstay as direct dependencies: Nuxt already ships them so they dedupe to zero extra install cost, and keeping them direct avoids any resolution failure modes if Nuxt's internals change.The typecheck script now stubs the module before running Nuxt typecheck so the required check works from a fresh checkout.
📊 Fresh install benchmark
Measured with package metadata tarballs from
mainand this branch, withcatalog:specs resolved, installed into clean Nuxt 4.4.8 apps using pnpm 11.9.0.Removed from the incremental fresh install:
@unocss/config,@unocss/core,culori,lightningcss,lightningcss-linux-x64-gnu,unconfig,unconfig-core,colorette, and@quansync/fs— this covers the bulk of the original ~15 MB / 16-package saving, since the retained parser packages dedupe against Nuxt's own copies.