forked from AlexanderRichey/styled-react-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
48 lines (47 loc) · 1.12 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
import resolve from "@rollup/plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import { terser } from "rollup-plugin-terser";
import babel from "@rollup/plugin-babel";
import commonjs from "rollup-plugin-commonjs";
export default {
input: "src/index.jsx",
output: [
{
name: "styled-react-modal",
file: "build/umd/index.js",
format: "umd",
exports: "named",
globals: {
react: "React",
"react-dom": "ReactDOM",
"styled-components": "styled"
}
},
{
name: "styled-react-modal",
exports: "named",
file: "build/mjs/index.mjs",
format: "es"
}
],
plugins: [
resolve({
extensions: [".jsx", ".js"],
moduleDirectories: ["node_modules"]
}),
replace({
"process.env.NODE_ENV": JSON.stringify("production"),
preventAssignment: true
}),
commonjs({
include: /node_modules/
}),
babel({
babelHelpers: "runtime",
extensions: [".jsx", ".js"],
exclude: /(node_modules|build)/
}),
terser()
],
external: ["react", "react-dom", "styled-components"]
};