@gruzf/numen
v2.0.7
Published
JavaScript bundler and minifier
Downloads
17
Readme
numen
NUMEN is a JavaScript bundler and minifier created on the basis of esbuild and tsup.
Why you should use numen instead of tsup:
- babel is loaded if there is a config file in the project
- creating d.ts for TS files only
- rebuild when you fix bugs in watch mode
- add priority option to numen.config.ts file
- add ignore option
Install
npm install -D @gruzf/numen
or
yarn add @gruzf/numen --dev
Usage
Bundle files
numen [...files]
Files are written into ./dist
.
You can bundle multiple files in one go:
numen src/index.ts src/cli.ts
This will output dist/index.js
and dist/cli.js
.
Documentation
For complete usages, please dive into the docs.