-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
feat: support Rolldown #13747
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: support Rolldown #13747
Conversation
|
I filed an issue for a follow-up here: #13756 |
Testing integration with https://github.com/vitejs/rolldown-vite
TODOS
rollupOptions.onwarn
setting not silencing the non-existent hook import messages ([Bug]:onwarn
does not providewarning.id
rolldown/rolldown#4427)experimental.enableNativePlugins
working https://vite.dev/guide/rolldown#enabling-native-plugins currently it causes styles to not be applied. Likely the reason is that the generated manifest doesn't include style information and therefore not loaded. It could potentially be fixed separatelybuild.watch
to finish being implemented in vite rolldown (Build watch mode remaining issues vitejs/rolldown-vite#149).bundleClose
support is needed for the adapterresolveId
hook needs to run for everyid
to build an import mapPlease don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.Edits