bndl_cli

TypeScript bundler and transpiler for monorepo backend projects.

cargomacoslinuxwindows
Try with needOr install directly
Source

About

A basic TypeScript transpiling and bundling tool for (primarily backend) monorepos

Commands

bndl

Examples

bundle typescript code into a single javascript file$ bndl src/index.ts --output dist/bundle.js
transpile typescript to javascript without bundling$ bndl src --output dist --no-bundle
build multiple packages in a monorepo at once$ bndl packages/*/src/index.ts --output dist
minify and optimize bundled javascript output$ bndl src/index.ts --output dist/bundle.js --minify
generate source maps for debugging transpiled code$ bndl src/index.ts --output dist/bundle.js --sourcemap