2019-08-14
# compile to a <script> containing a self-executing function ('iife')
$ rollup main.js --flie bundle.js --format iife
# compile to a CommonJS module ('cjs')
$ rollup main.js --file bundle.js --format cjs
# UMD format requires a bundle name
$ rollup main.js --file bundle.js --format umd --name "myBundle"
$ rollup ./src/main.js --file ./dist/bundle.js --format es
也称为:live code inclusion
使用 Rollup 处理代码模块, 采用 ES6 标准(使用 import/export
),可以对模块文件进行静态分析,并可以排除任何未实际使用的代码
为什么 ES Module 要优于 CommonJS
// 使用 CommonJS,必须导入整个库
// Import a full utils object using CommonJS
var utils = require( 'utils' );
var query = 'Rollup';
// Use the ajax method of the utils object
utils.ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
// 使用 ES6 module,无须导入整个库
// Import ajax function using the ES6 import statement
import { ajax } from 'utils';
var query = 'Rollup';
// Calling ajax function
ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
rollup-plugin-commonjs
,来将其转换为 ES Module,前提还需要安装和引入 rollup-plugin-node-resolve
插件,原因是 Rollup 不同于 Webpack 和 Browserify,它不知道如何处理模块中的依赖,所以 rollup-plugin-node-resolve
插件可以告诉 Rollup 如何查找外部模块。rollup-plugin-commonjs
。另外,为了防止其他插件的改变破坏 commonjs 的检测,rollup-plugin-commonjs
应该用在其他插件转换模块之前。A number of open-source projects use it over Webpack
Webpack 获得了巨大成功,每月有百万级的下载,赋能了成千上万的网站和应用,有巨大的生态和资金支持,相比之下,Rollup 无足轻重
Facebook 采用 Rollup 来实现 React 的 build process,merge 了大量 pull request
Vue, Ember, Preact, D3, Three.js, Moment, and dozens of other well-known libraries also use Rollup
Rollup 以不同的目的被创建,Rollup 目的是要尽可能的高效的构建扁平的可分配的 Javascript libraries,充分使用 ES Module 的优点, 会将所有代码放在同一个位置统一进行验证,更快的生成更轻量级的代码。Rollup 不支持 code-splitting
,HMR
,而且处理 CommonJS 时需要插件。
Webpack 支持 code-splitting
, 实现了一个浏览器友好的 require
,将每个模块一个接一个的验证再打包。如果需要 on-demand loading,会很好;否则会造成性能浪费,尤其如果打包大量模块时,性能较差。
Use webpack for apps, and Rollup for libraries
import
和 export
) 会使统一标准,库的使用也会无缝。但现在很多浏览器以及 Node.js 不支持 import
和 export
, 需要使用 UMD 或 CommonJS (Nodejs)package.json
文件中增加 "module": "dist/my-library.es.js"
, 可以同时更好的支持 UMD 和 ES Modulepkg.module
来尽可能生成更高效的代码, 在某些情况下都会 tree-shakingALL JS LIBRARIES SHOULD BE AUTHORED IN TYPESCRIPT
$ yarn add typescript rollup rollup-plugin-typescript2 rollup-plugin-commonjs rollup-plugin-peer-deps-external rollup-plugin-node-resolve --dev
$ yarn add react @types/react --dev
$ yarn add react-dom @types/react-dom --dev
{
"compilerOptions": {
"outDir": "build",
"module": "esnext",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
"declaration": true, // 自动生成 .d.ts
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["src"], // 查找 ts 文件路径
"exclude": ["node_modules", "build"] // 排出路径避免 build
}
import typescript from "rollup-plugin-typescript2";
import commonjs from "rollup-plugin-commonjs";
import external from "rollup-plugin-peer-deps-external";
import resolve from "rollup-plugin-node-resolve";
import pkg from "./package.json";
export default {
input: "src/index.tsx",
output: [
{
file: pkg.main,
format: "cjs",
// exports: "named",
sourcemap: true
},
{
file: pkg.module,
format: "es",
// exports: "named",
sourcemap: true
}
],
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {})
],
plugins: [
commonjs({ // 置于最前 ( 否则可能需要配置 namedExports 才能阻止保错 )
include: ["node_modules/**"],
}),
external(),
resolve(),
typescript({
rollupCommonJSResolveHack: true,
exclude: "**/__tests__/**",
clean: true
})
]
};
{
"name": "...",
"version": "...",
"description": "...",
"author": "...",
"main": "build/index.js",
"module": "build/index.es.js", // pkg.module
"jsnext:main": "build/index.es.js",
"types": "build/index.d.ts",
"license": "...",
"repository": "...",
"keywords": ['...', '...'],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build" // npm publish 时会先调用进行打包
},
"files": [ // 仅 build 文件夹被打包进库里
"build"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
...
},
"devDependencies": {
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.16.6",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.21.2",
"typescript": "^3.5.2"
}
}
# 在开发的库文件目录下
$ yarn link # 会在全局生成一个 link 文件 (如:.nvm/versions/node/v10.15.3/lib/node_modules/your-package-name),link 到此库文件目录
# 在要使用库的 example project 文件目录下
$ yarn link your-package-name # link 到全局的 link 文件,从而又 link 到开发的库文件目录
# Fix Duplicate React: https://github.com/facebook/react/issues/15315#issuecomment-479802153
$ npm link ../example/node_modules/react