Skip to content

Rollup

Rollup 是 Js 模块打包工具, 主要用于将多个 Js 文件打包成一个或多个输出文件, 适合构建库或者应用程序

主要特性:

  • ES6 模块支持
  • 插件系统
  • 配置简单
  • 多种输出格式

使用

分析

版本: v4

初始文件

Js
const rollup = require('rollup');
debugger;
rollup.rollup({ input: 'index.js' });

Released under the MIT License.