Replies: 1 comment
-
Currently this isn't configurable. Bun will only install packages that match the current |
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
-
We currently use
yarn
with thesupportedArchitectures
option in yarnrc. This is because the dev machines are macs, but we run development containers using docker compose. This means all the JS packages need to work with bothdarwin
so that they can called directly from host machine, and forlinux
so that they run inside the containers.While attempting to move to bun, I noticed that the containers would crash because of missing linux architecture-specific packages (e.g. sharp for nextjs).
Is there a similar way like
supportedArchitectures
for bun?Beta Was this translation helpful? Give feedback.
All reactions