-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
123 lines (117 loc) · 2.69 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import pkg from "./package.json";
import typescript from "@rollup/plugin-typescript";
import babel from "@rollup/plugin-babel";
import replace from "@rollup/plugin-replace";
import nodeResolve from "@rollup/plugin-node-resolve";
import { terser } from "rollup-plugin-terser";
const globals = {
react: "React",
"react-dom": "ReactDOM",
"react-router-dom": "ReactRouterDOM",
};
const cjs = [
{
input: "src/index.tsx",
output: {
dir: "cjs",
format: "cjs",
sourcemap: true,
esModule: false,
entryFileNames: `${pkg.name}.js`,
},
plugins: [
babel({
exclude: /node_modules/,
sourceMaps: true,
rootMode: "upward",
}),
nodeResolve(),
typescript({ declaration: true, declarationDir: "cjs" }),
replace({ "process.env.NODE_ENV": JSON.stringify("development") }),
],
external: Object.keys(globals),
},
{
input: "src/index.tsx",
output: {
file: `cjs/${pkg.name}.min.js`,
format: "cjs",
sourcemap: true,
},
plugins: [
babel({
exclude: /node_modules/,
sourceMaps: true,
rootMode: "upward",
}),
nodeResolve(),
typescript(),
replace({ "process.env.NODE_ENV": JSON.stringify("production") }),
terser(),
],
external: Object.keys(globals),
},
];
const umd = [
{
input: "src/index.tsx",
output: {
file: `umd/${pkg.name}.js`,
format: "umd",
name: "ReactHashScroll",
globals,
},
external: Object.keys(globals),
plugins: [
babel({
exclude: /node_modules/,
babelHelpers: "runtime",
plugins: [["@babel/transform-runtime", { useESModules: true }]],
rootMode: "upward",
}),
nodeResolve(),
typescript({ sourceMap: false }),
replace({
"process.env.NODE_ENV": JSON.stringify("development"),
}),
],
},
{
input: "src/index.tsx",
output: {
file: `umd/${pkg.name}.min.js`,
format: "umd",
name: "ReactHashScroll",
globals,
},
external: Object.keys(globals),
plugins: [
babel({
exclude: /node_modules/,
babelHelpers: "runtime",
plugins: [["@babel/transform-runtime", { useESModules: true }]],
rootMode: "upward",
}),
typescript({ sourceMap: false }),
nodeResolve(),
replace({
"process.env.NODE_ENV": JSON.stringify("production"),
}),
terser(),
],
},
];
const createConfig = () => {
switch (process.env.BUILD_ENV) {
case "cjs": {
return [...cjs];
}
case "umd": {
return [...umd];
}
default: {
return [...cjs, ...umd];
}
}
};
export default createConfig();