forked from SmashTapsOS/reactjs-videobg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
45 lines (43 loc) · 963 Bytes
/
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
import babel from "rollup-plugin-babel";
import resolve from "rollup-plugin-node-resolve";
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import commonjs from "rollup-plugin-commonjs";
import postcss from "rollup-plugin-postcss";
import { terser } from "rollup-plugin-terser";
const name = "ReactVideoBg";
const dist = "dist";
const bundleName = "bundle";
const prod = !process.env.ROLLUP_WATCH;
export default {
input: "src/index.js",
output: [
{
file: `${dist}/${bundleName}.cjs.js`,
format: "cjs"
},
{
file: `${dist}/${bundleName}.esm.js`,
format: "esm"
},
{
name: name,
globals: {
react: "React"
},
file: `${dist}/${bundleName}.umd.js`,
format: "umd"
}
],
plugins: [
peerDepsExternal(),
resolve(),
postcss({
modules: true
}),
babel({
exclude: "node_modules/**"
}),
prod && terser(),
commonjs()
]
};