-
Notifications
You must be signed in to change notification settings - Fork 4
/
rollup.config.js
79 lines (74 loc) · 1.58 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import nodeResolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import dts from 'rollup-plugin-dts';
import { terser } from "rollup-plugin-terser";
import commonjs from "@rollup/plugin-commonjs";
import pkg from './package.json';
import { resolve } from "path"
const outDir = resolve(".", "lib")
const libs = [
{// 浏览器导入
ext: ".browser.js",
name: toHump(pkg.name),
format: "iife",
exports: 'named',
plugins: [
typescript({ sourceMap: false, target: "es5" }),
]
},
{// 浏览器压缩版
ext: ".browser.min.js",
name: toHump(pkg.name),
format: "iife",
exports: 'named',
plugins: [
typescript({ sourceMap: false, target: "es5" }),
terser(),
]
},
{// nodejs
ext: ".cjs.js",
format: "cjs",
exports: 'named',
plugins: [
typescript({ sourceMap: false, }),
]
},
{// esm
ext: ".es.js",
format: "esm",
plugins: [
typescript({ sourceMap: false, }),
]
},
{// .d.ts
ext: ".d.ts",
format: "esm",
plugins: [
dts()
]
}
]
export default libs.map(item => {
return {
input: "./src/index.ts",
output: {
format: item.format,
name: item.name,
exports: item.exports,
file: resolve(outDir, pkg.name + item.ext)
},
plugins: [
nodeResolve(),
commonjs(),
...item.plugins
],
}
})
function toHump(name) {
return name.replace(/^(\w)/, function (a, w) {
return w.toUpperCase()
}).replace(/\-(\w)/g, function (all, letter) {
return letter.toUpperCase();
});
}