@mirum7/bun-build
v1.5.4
Published
A simple build tool for Bun
Readme
Info
This is a simple library for building projects using Bun.
Installation
bun add -d @mirum7/bun-buildUsage
Add build.config.ts to the root of your project:
import { BuildConfig } from "@mirum7/bun-build";
const config: BuildConfig = {
// your config options here
};
export default config;Then, run the build command:
bunx bun-buildConfiguration Options
Same as BuildConfig from bun.
but
entrypoints- not required, default value -package.jsonmainfieldoutdir- not required, default value -distexternal- not required, default value - allpeerDependenciesfrompackage.json
