-
Notifications
You must be signed in to change notification settings - Fork 102
/
rollup.config.js
107 lines (100 loc) · 2.28 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import babel from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import postcss from "rollup-plugin-postcss";
import cssvariables from "postcss-css-variables";
import svgr from "@svgr/rollup";
import url from "@rollup/plugin-url";
import fs from "fs";
import { terser } from "rollup-plugin-terser";
const external = [
"react",
"react-dom",
"react-date-object",
"react-element-popper",
];
const presets = ["@babel/preset-react", "@babel/preset-env"];
const globals = {
react: "React",
"react-date-object": "DateObject",
"react-element-popper": "ElementPopper",
};
export default [
{
input: "src/index.js",
output: [
{
file: "build/index.js",
format: "cjs",
plugins: [terser()],
exports: "named",
},
],
...getProps(),
},
{
input: "src/index_browser.js",
output: [
{
file: "build/browser.min.js",
format: "umd",
plugins: [terser()],
name: "ReactMultiDatePicker",
exports: "named",
globals,
},
],
...getProps(),
},
...build("plugins"),
...build("elements"),
];
function getProps() {
return {
external,
plugins: [
resolve(),
peerDepsExternal(),
babel({
exclude: /node_modules/,
presets,
babelHelpers: "bundled",
}),
commonjs(),
postcss({
minimize: true,
plugins: [cssvariables()],
}),
svgr(),
url(),
],
};
}
function build(dirName) {
return fs.readdirSync("./src/" dirName).map((path) => {
let name = path
.replace(/^./, (w) => w.toUpperCase())
.replace(/_./g, (w) => w.replace("_", "").toUpperCase());
return {
input: `src/${dirName}/${path}/${path}.js`,
output: [
{
file: `${dirName === "elements" ? "components" : dirName}/${path}.js`,
format: "cjs",
plugins: [terser()],
exports: "named",
},
{
file: `build/${path}.browser.js`,
format: "umd",
plugins: [terser()],
name,
exports: "default",
globals,
},
],
...getProps(),
};
});
}