forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
173 lines (160 loc) · 4.37 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
/* 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 uglify from 'rollup-plugin-uglify'
import visualizer from 'rollup-plugin-visualizer'
import sourceMaps from 'rollup-plugin-sourcemaps'
import ignore from 'rollup-plugin-ignore'
import pkg from './package.json'
const cjs = {
format: 'cjs',
exports: 'named',
}
const commonPlugins = [
flow({
// needed for sourcemaps to be properly generated
pretty: true,
}),
json(),
nodeResolve(),
sourceMaps(),
commonjs({
ignoreGlobal: true,
}),
babel({
plugins: ['external-helpers'],
}),
replace({
__DEV__: JSON.stringify(false), // disable flag indicating a Jest run
}),
]
const configBase = {
input: 'src/index.js',
globals: { react: 'React' },
external: ['react'].concat(Object.keys(pkg.dependencies)),
plugins: commonPlugins,
sourcemap: true,
}
const umdConfig = Object.assign({}, configBase, {
output: {
file: 'dist/styled-components.js',
format: 'umd',
name: 'styled',
exports: 'named',
},
external: ['react'],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(false),
}),
ignore(['stream'])
),
})
const devUmdConfig = Object.assign({}, umdConfig, {
plugins: umdConfig.plugins.concat(
replace({
'process.env.NODE_ENV': JSON.stringify('development'),
})
),
})
const prodUmdConfig = Object.assign({}, umdConfig, {
output: Object.assign({}, umdConfig.output, {
file: 'dist/styled-components.min.js',
}),
plugins: umdConfig.plugins.concat([
replace({
'process.env.NODE_ENV': JSON.stringify('production'),
"export * from './secretInternals'": '',
}),
uglify({
sourceMap: true,
}),
visualizer({ filename: './bundle-stats.html' }),
]),
})
const serverConfig = Object.assign({}, configBase, {
external: configBase.external.concat('stream'),
output: [
{ file: 'dist/styled-components.es.js', format: 'es' },
Object.assign({}, cjs, { file: 'dist/styled-components.cjs.js' }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
})
),
})
const browserConfig = Object.assign({}, configBase, {
output: [
{ file: 'dist/styled-components.browser.es.js', format: 'es' },
Object.assign({}, cjs, { file: 'dist/styled-components.browser.cjs.js' }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(false),
"export * from './secretInternals'": '',
}),
ignore(['stream'])
),
})
const nativeConfig = Object.assign({}, configBase, {
input: 'src/native/index.js',
output: Object.assign({}, cjs, { file: 'dist/styled-components.native.cjs.js' }),
external: configBase.external.concat('react-native'),
})
const primitivesConfig = Object.assign({}, configBase, {
input: 'src/primitives/index.js',
output: [
{ file: 'dist/styled-components-primitives.es.js', format: 'es' },
Object.assign({}, cjs, {
file: 'dist/styled-components-primitives.cjs.js',
}),
],
external: configBase.external.concat('react-primitives'),
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
})
),
})
const noParserConfig = Object.assign({}, configBase, {
external: configBase.external.concat('stream'),
input: 'src/no-parser/index.js',
output: [
{ file: 'dist/styled-components-no-parser.es.js', format: 'es' },
Object.assign({}, cjs, { file: 'dist/styled-components-no-parser.cjs.js' }),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(true),
})
),
})
const noParserBrowserConfig = Object.assign({}, configBase, {
output: [
{ file: 'dist/styled-components-no-parser.browser.es.js', format: 'es' },
Object.assign({}, cjs, {
file: 'dist/styled-components-no-parser.browser.cjs.js',
}),
],
plugins: configBase.plugins.concat(
replace({
__SERVER__: JSON.stringify(false),
}),
ignore(['stream'])
),
})
export default [
devUmdConfig,
prodUmdConfig,
serverConfig,
browserConfig,
nativeConfig,
primitivesConfig,
noParserConfig,
noParserBrowserConfig,
]