-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
fix(deno): do not set vite.ssr.noExternal #8652
Conversation
🦋 Changeset detectedLatest commit: 91473c8 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
vite.ssr = { | ||
noExternal: COMPATIBLE_NODE_MODULES, | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noExternal
was set to true originally. I had to change it to the list of bare node built-in modules in #7288. But apparently, it doesn't need to be set at all.
Are we sure about this fix? The adapter is about to be moved #8559, and I don't think we plan to do a new release |
I know but unfortunately, this is a build-breaking bug. |
The changes looks fine to me. I think the previous implementation probably wasn't affecting much either, but I don't quite understand how this PR fixes #8390. How was |
beats me 🤷 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked with @matthewp on Discord and we are good to go with merging this PR. Let's 🚢 it!
Changes
Testing
Could use more tests, not sure if this is the time for it.
Docs
Does not affect usage.