-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.js
98 lines (87 loc) · 2.25 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
import nodeResolve from "rollup-plugin-node-resolve";
import replace from "rollup-plugin-replace";
import commonjs from "rollup-plugin-commonjs";
import babel from "rollup-plugin-babel";
import json from "rollup-plugin-json";
import flow from "rollup-plugin-flow";
import { terser } from "rollup-plugin-terser";
import sourceMaps from "rollup-plugin-sourcemaps";
import pkg from "./package.json";
/**
* NODE_ENV explicit replacement is only needed for standalone packages, as webpack
* automatically will replace it otherwise in the downstream build.
*/
const cjs = {
exports: "named",
format: "cjs",
sourcemap: true,
};
const esm = {
format: "esm",
sourcemap: true,
};
const getCJS = (override) => ({ ...cjs, ...override });
const getESM = (override) => ({ ...esm, ...override });
const commonPlugins = [
flow({
// needed for sourcemaps to be properly generated
pretty: true,
}),
sourceMaps(),
json(),
nodeResolve(),
babel({
configFile: require.resolve("./babel.config.js"),
exclude: ["node_modules/**"],
}),
commonjs({
ignoreGlobal: true,
namedExports: {
"react-is": ["isElement", "isValidElementType", "ForwardRef", "typeof"],
},
}),
replace({
__VERSION__: JSON.stringify(pkg.version),
}),
];
// this should always be last
const minifierPlugin = terser({
compress: {
passes: 2,
},
sourcemap: true,
});
const configBase = {
input: "./src/index.js",
// \0 is rollup convention for generated in memory modules
external: (id) =>
!id.startsWith("\0") && !id.startsWith(".") && !id.startsWith("/"),
plugins: commonPlugins,
};
const serverConfig = {
...configBase,
output: [
getESM({ file: "dist/styled-email-components.esm.js" }),
getCJS({ file: "dist/styled-email-components.cjs.js" }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
}),
minifierPlugin
),
};
const browserConfig = {
...configBase,
output: [
getESM({ file: "dist/styled-email-components.browser.esm.js" }),
getCJS({ file: "dist/styled-email-components.browser.cjs.js" }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(false),
}),
minifierPlugin
),
};
export default [serverConfig, browserConfig];