-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ classNames('a', ['b', { c: true, d: false }]) // 'a b c' | |
|
||
## 分析 | ||
|
||
版本: 2.5.1 | ||
|
||
循环处理 函数参数 arguments | ||
|
||
```Js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[[toc]] | ||
|
||
# Rollup | ||
|
||
Rollup 是 Js 模块打包工具, 主要用于将多个 Js 文件打包成一个或多个输出文件, 适合构建库或者应用程序 | ||
|
||
主要特性: | ||
|
||
- ES6 模块支持 | ||
- 插件系统 | ||
- 配置简单 | ||
- 多种输出格式 | ||
|
||
## 使用 | ||
|
||
## 分析 | ||
|
||
版本: v4 | ||
|
||
初始文件 | ||
|
||
```Js | ||
const rollup = require('rollup'); | ||
debugger; | ||
rollup.rollup({ input: 'index.js' }); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
[classnames](./Classnames.html) | ||
[Rollup](./Rollup.html) |