forked from njsfield/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
182 lines (164 loc) · 4.13 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* eslint-disable flowtype/require-valid-file-annotation, no-console, import/extensions */
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';
// rollup-plugin-ignore stopped working, so we'll just remove the import lines 😐
const propTypeIgnore = { "import PropTypes from 'prop-types';": "'';" };
const streamIgnore = { "import stream from 'stream';": "'';" };
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({
exclude: 'node_modules/**',
plugins: ['external-helpers'],
}),
commonjs({
ignoreGlobal: true,
namedExports: {
'react-is': ['isElement', 'isValidElementType', 'ForwardRef'],
},
}),
replace({
__VERSION__: JSON.stringify(pkg.version),
}),
];
const prodPlugins = [
replace({
...propTypeIgnore,
'process.env.NODE_ENV': JSON.stringify('production'),
}),
terser({
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 globals = { react: 'React', 'react-dom': 'ReactDOM' };
const standaloneBaseConfig = {
...configBase,
input: './src/index-standalone.js',
output: {
file: 'dist/styled-components.js',
format: 'umd',
globals,
name: 'styled',
sourcemap: true,
},
external: Object.keys(globals),
plugins: configBase.plugins.concat(
replace({
...streamIgnore,
__SERVER__: JSON.stringify(false),
})
),
};
const standaloneConfig = {
...standaloneBaseConfig,
plugins: standaloneBaseConfig.plugins.concat(
replace({
'process.env.NODE_ENV': JSON.stringify('development'),
})
),
};
const standaloneProdConfig = {
...standaloneBaseConfig,
output: {
...standaloneBaseConfig.output,
file: 'dist/styled-components.min.js',
},
plugins: standaloneBaseConfig.plugins.concat(prodPlugins),
};
const serverConfig = {
...configBase,
output: [
getESM({ file: 'dist/styled-components.esm.js' }),
getCJS({ file: 'dist/styled-components.cjs.js' }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
})
),
};
const browserConfig = {
...configBase,
output: [
getESM({ file: 'dist/styled-components.browser.esm.js' }),
getCJS({ file: 'dist/styled-components.browser.cjs.js' }),
],
plugins: configBase.plugins.concat(
replace({
...streamIgnore,
__SERVER__: JSON.stringify(false),
})
),
};
const nativeConfig = {
...configBase,
input: './src/native/index.js',
output: [
getCJS({
file: 'native/dist/styled-components.native.cjs.js',
}),
getESM({
file: 'native/dist/styled-components.native.esm.js',
}),
],
};
const primitivesConfig = {
...configBase,
input: './src/primitives/index.js',
output: [
getESM({ file: 'primitives/dist/styled-components-primitives.esm.js' }),
getCJS({
file: 'primitives/dist/styled-components-primitives.cjs.js',
}),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
})
),
};
const macroConfig = Object.assign({}, configBase, {
input: './src/macro/index.js',
output: [
getESM({ file: 'dist/styled-components-macro.esm.js' }),
getCJS({ file: 'dist/styled-components-macro.cjs.js' }),
],
});
export default [
standaloneConfig,
standaloneProdConfig,
serverConfig,
browserConfig,
nativeConfig,
primitivesConfig,
macroConfig,
];