-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Make JS APIs available to plugins and configs in the Standalone CLI #15934
base: main
Are you sure you want to change the base?
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
3284714
to
45c9de9
Compare
Looks like we're going to need another fix in Bun (or some other workaround). Edit: Weirdly this works when building locally on Windows x64. Maybe something about the setup on GitHub Actions? Will have to keep testing. Windows binary asset bundling appears to be broken (maybe a v1.2.x bug?)
|
Related issue: #15235 |
Nevermind, the C: drive is affected too. I was building using an old version of Bun when on the C: drive previously. |
I've filed a bug here: oven-sh/bun#17082 |
50f0977
to
d04074b
Compare
This PR ensures we bundle the relevant JS APIs in the Standalone CLI like
tailwindcss
,tailwindcss/plugin
,tailwindcss/colors
, etc…Before, when loading plugins or configs, imports for those resources would fail.
Fixes #15235