forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
114 lines (103 loc) · 2.79 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
/* 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 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'],
}),
]
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'],
})
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'),
}),
uglify({
sourceMap: true,
}),
visualizer({ filename: './bundle-stats.html' })
),
})
const webConfig = Object.assign({}, configBase, {
output: [
{ file: pkg.module, format: 'es' },
Object.assign({}, cjs, { file: pkg.main }),
],
})
const nativeConfig = Object.assign({}, configBase, {
input: 'src/native/index.js',
output: Object.assign({}, cjs, { file: pkg['react-native'] }),
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'),
})
const noParserConfig = Object.assign({}, configBase, {
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' }),
],
})
export default [
devUmdConfig,
prodUmdConfig,
webConfig,
nativeConfig,
primitivesConfig,
noParserConfig,
]