UNPKG
weison-utils
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
前端常用工具库
github.com/Weison-Zhong/weison-utils
Weison-Zhong/weison-utils
weison-utils
/
rollup.config.js
11 lines
(10 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
default
{ input:
"./src/index.js"
,
// 入口
output: [ { format:
"umd"
,
// 打包为umd通用格式,兼容了amd和CommonJS,可在浏览器或node环境运行
file:
"dist/index.js"
,
//输出目录及文件名
name:
"index.js"
, }, ], };