0.2.0 • Published 6 years ago

denorollup v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

denorollup

Rollup CLI for deno

Installation

npm install -g denorollup
# or
yarn global add denorollup

Usage

denorollup [options] <entry file>
Options:
-d, --dir <dirname>     Directory for chunks (if absent, prints to stdout)
-h, --help              Show this help message
-i, --input <filename>  Input (alternative to <entry file>)
-m, --sourcemap         Generate sourcemap (\`-m inline\` for inline map)
-o, --file <output>     Single output file (if absent, prints to stdout)
-v, --version           Show version number
-w, --watch             Watch files in bundle and rebuild on changes

Examples:

denorollup input.ts > output.ts

denorollup -m -i input.ts -o output.ts
denorollup --sourcemap --input input.ts --file output.ts

Build

To build this tool you need to have installed both Node and Deno

npm run build

0.2.0

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago