The Zumerbox build tool is a command-line utility designed to bundle and compile JavaScript and SCSS files into distributable formats. It leverages the esbuild library for efficient bundling and minification, providing developers with a streamlined workfl
npm install @zumerbox/buildThe Zumerbox build tool is a command-line utility designed to bundle and compile JavaScript and SCSS files into distributable formats. It leverages the esbuild library for efficient bundling and minification, providing developers with a streamlined workflow for frontend development.
Refer to the ZumerBox bundle for more information and tools.
``bash`
npm install @zumerbox/build --save-dev
`bash`
npx @zumerbox/build --name
- --name (-n): Specifies the name of the bundler. If not provided, it will attempt to use the name from the package.json file. If the name is not available in package.json, it will default to "MyBundler".--js (-j)
- : Specifies the path to the JavaScript file (optional).--scss (-s)
- : Specifies the path to the SCSS file (optional).--minify (-m)
- : Generates minified output files (JavaScript and CSS) if enabled.--outdir (-d)
- : Specifies the destination folder for the output files. Default is "dist".--platform (-p)
- : Specifies the target platform for esBuild. Default is "browser".--help (-h)`: Displays the help message.
-
This tools is powered by esbuild (https://esbuild.github.io/)