Replies: 2 comments 1 reply
-
Ah think we may have used |
Beta Was this translation helpful? Give feedback.
1 reply
-
Noting this for future reference. Bun v1.0 was released today and it includes experimental support for Windows. So this dependency may be re-introduced in the (hopefully near) future once support has stabilized. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently,
pnpm install
andpnpm dev
do not work on Windows because:bun
is a dev dependency (bun
does not currently support Windows)pnpm dev
setsNODE_ENV=development
Solution 1: update
package.json
These issues can be fixed by removing
bun
as a dependency, and usingcross-env
to set the env variable. Here are the required changes topackage.json
:After making these changes, I'm able to run the dev server and build the extension on Windows.
Solution 2: use WSL
pnpm install
andpnpm dev
work as expected in WSL, without making any changes to the repo.Not sure if removing
bun
breaks anything, it appears unused?Beta Was this translation helpful? Give feedback.
All reactions