一、安装
npm install rollup --global
安装成功后,在命令行窗口中,输入:
rollup
会看到关于 rollup 帮助信息
二、命令解释
rollup src/main.js
打包文件,会把打包后的文件输出出来
rollup src/main.js --output bundle.js
打包文件,并输出到 bundle.js
rollup src/main.js --output bundle.js --format cjs
# rollup src/main.js -o bundle.js -f cjs
以commonjs 的方式打包文件
三、使用配置文件
- 创建 rollup.config.js:
export default {
entry: 'src/main.js',
format: 'cjs',
dest: 'bundle.js' // equivalent to --output
};
- 执行命令:
rollup -c
# rollup -c -o bundle-2.js
-o 可以重写部分选项
- 在开发环境和生产环境,执行不同的config
rollup --config rollup.config.dev.js
rollup --config rollup.config.prod.js
网友评论