-
Notifications
You must be signed in to change notification settings - Fork 7
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
Support for Bun #13
Comments
My current setup for it looks a bit like: [PackageManager.Bun]: {
// Sorry, this is a hack for now
// bun init always creates the extra files when we really just want
// package.json. ):
// Bun also only currently supports Linux, so we'll just assume
// rm -rf will work.
init: "bun init -y && rm -rf index.ts .gitignore tsconfig.json README.md",
devInstall: "bun install --silent -d",
build: "bun run build",
}, |
See also roblox-ts/roblox-ts#2485 |
that version unfortunately wouldn't work |
Open
Until my PR is merged, you can use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bun is just a much faster installer than NPM, PNPM, or Yarn, but it also only supports Unix systems.
It's really nice to use it over the other ones because it makes the installation process take way less time (6.35x faster than pnpm and over 8x faster than npm or yarn on my machine).
There's one drawback besides the obvious Unix only support and that's the fact that
bun init -y
creates more than just apackage.json
file, so you'd have torm -rf
the extra files it creates.The text was updated successfully, but these errors were encountered: