forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
83 lines (77 loc) · 2.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
/* 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 inject from 'rollup-plugin-inject'
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 pkg from './package.json'
const processShim = '\0process-shim'
const prod = process.env.PRODUCTION
const esbundle = process.env.ESBUNDLE
let targets
if (prod) {
console.log('Creating production UMD bundle...')
targets = [{ dest: 'dist/styled-components.min.js', format: 'umd' }]
} else if (esbundle) {
console.log('Creating ES modules bundle...')
targets = [{ dest: 'dist/styled-components.es.js', format: 'es' }]
} else {
console.log('Creating development UMD bundle')
targets = [{ dest: 'dist/styled-components.js', format: 'umd' }]
}
const plugins = [
// Unlike Webpack and Browserify, Rollup doesn't automatically shim Node
// builtins like `process`. This ad-hoc plugin creates a 'virtual module'
// which includes a shim containing just the parts the bundle needs.
{
resolveId(importee) {
if (importee === processShim) return importee
return null
},
load(id) {
if (id === processShim) return 'export default { argv: [], env: {} }'
return null
},
},
flow(),
json(),
nodeResolve(),
commonjs({
ignoreGlobal: true,
}),
replace({
'process.env.NODE_ENV': JSON.stringify(prod ? 'production' : 'development'),
}),
inject({
process: processShim,
}),
babel({
babelrc: false,
presets: [
['env', { modules: false, loose: true }],
'react',
],
plugins: [
!prod && 'flow-react-proptypes',
prod && 'transform-react-remove-prop-types',
'transform-flow-strip-types',
'external-helpers',
'transform-object-rest-spread',
'transform-class-properties',
].filter(Boolean),
}),
]
if (prod) plugins.push(uglify(), visualizer({ filename: './bundle-stats.html' }))
export default {
entry: 'src/index.js',
moduleName: 'styled',
external: ['react'].concat(esbundle ? Object.keys(pkg.dependencies) : []),
exports: 'named',
targets,
plugins,
globals: { react: 'React' },
}