-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
88 lines (73 loc) · 1.71 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
80
81
82
83
84
85
86
87
88
import babel from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import { eslint } from "rollup-plugin-eslint";
import { terser } from "rollup-plugin-terser";
const pkg = require("./package.json");
const date = (new Date()).toDateString();
// Meta settings.
const banner = `/**
* ${pkg.name} v${pkg.version} build ${date}
* ${pkg.homepage}
* Copyright ${date.slice(-4)} ${pkg.author.name}
* @license ${pkg.license}
*/`;
const production = (process.env.NODE_ENV === "production");
const external = Object.keys(pkg.peerDependencies);
const globals = Object.assign({}, ...external.map((value) => ({
[value]: value.replace(/-/g, "").toUpperCase()
})));
// Plugin settings.
const settings = {
babel: {
babelHelpers: "bundled"
}
}
// Bundle configurations.
const lib = {
module: {
input: "src/index.js",
external,
plugins: [resolve(), eslint()],
output: [
{
file: pkg.module,
format: "esm",
globals,
banner
}, {
file: pkg.main,
format: "esm",
globals
}, {
file: pkg.main.replace(".js", ".min.js"),
format: "esm",
globals
}
]
},
main: {
input: production ? pkg.main : "src/index.js",
external,
plugins: production ? [babel(settings.babel)] : [resolve(), eslint()],
output: {
file: pkg.main,
format: "umd",
name: pkg.name.replace(/-/g, "").toUpperCase(),
globals,
banner
}
},
min: {
input: pkg.main.replace(".js", ".min.js"),
external,
plugins: [terser(), babel(settings.babel)],
output: {
file: pkg.main.replace(".js", ".min.js"),
format: "umd",
name: pkg.name.replace(/-/g, "").toUpperCase(),
globals,
banner
}
}
};
export default production ? [lib.module, lib.main, lib.min] : [lib.main];