Tartalomjegyzék

< Node.js

Rollup

Rollup

JavaScript modul csomagoló.

Webhely:

Telepítés

npm install --global rollup

Használat

Böngésző számára:

# compile to a <script> containing a self-executing function ('iife')
rollup main.js --file bundle.js --format iife

Node.js számára:

# compile to a CommonJS module ('cjs')
rollup main.js --file bundle.js --format cjs

Böngésző és Node.js számára egyszerre:

# UMD format requires a bundle name
rollup main.js --file bundle.js --format umd --name "myBundle"