美文网首页
rollup 筑基篇 --01

rollup 筑基篇 --01

作者: VinChan | 来源:发表于2016-08-14 18:22 被阅读0次

一、安装

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 的方式打包文件

三、使用配置文件

  1. 创建 rollup.config.js:
export default {    
      entry: 'src/main.js',   
      format: 'cjs',    
      dest: 'bundle.js' // equivalent to --output
};
  1. 执行命令:
rollup -c 
# rollup -c -o bundle-2.js 

-o 可以重写部分选项

  1. 在开发环境和生产环境,执行不同的config
rollup --config rollup.config.dev.js
rollup --config rollup.config.prod.js

相关文章

网友评论

      本文标题:rollup 筑基篇 --01

      本文链接:https://www.haomeiwen.com/subject/lhywjttx.html