forked from cssinjs/jss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
164 lines (148 loc) · 4.27 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
import fs from 'fs'
import path from 'path'
import nodeResolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import babel from 'rollup-plugin-babel'
import replace from 'rollup-plugin-replace'
import {terser} from 'rollup-plugin-terser'
import {sizeSnapshot} from 'rollup-plugin-size-snapshot'
import camelCase from 'camelcase'
const getPackageJson = require('./scripts/get-package-json')
const pkg = getPackageJson()
const rootPath = path.resolve('./')
const matchSnapshot = process.env.MATCH_SNAPSHOT === 'true'
const logSnapshot = process.env.LOG_SNAPSHOT === 'true'
const input = path.join(rootPath, './src/index.js')
const name = camelCase(pkg.name)
const globals = {
jss: 'jss',
'react-jss': 'reactJss',
react: 'React'
}
Object.keys(pkg.peerDependencies || {}).forEach(key => {
if (!(key in globals)) {
throw new Error(`Missing peer dependency "${key}" in the globals map.`)
}
})
const external = id => !id.startsWith('.') && !id.startsWith('/')
const getBabelOptions = ({useESModules}) => ({
exclude: /node_modules/,
babelrc: false,
runtimeHelpers: true,
presets: [['@babel/env', {loose: true}], '@babel/flow', '@babel/react'],
plugins: [
['@babel/proposal-class-properties', {loose: true}],
['@babel/transform-runtime', {useESModules}],
['@babel/plugin-proposal-export-namespace-from'],
['dev-expression']
]
})
const commonjsOptions = {
include: [
/\/node_modules\/react\//,
/\/node_modules\/prop-types\//,
/\/node_modules\/react-display-name\//,
/\/node_modules\/hoist-non-react-statics\//
],
ignoreGlobal: true,
// The CommonJS plugin can't resolve the exports in `react` automatically.
// https://github.com/rollup/rollup-plugin-commonjs#custom-named-exports
// https://github.com/reduxjs/react-redux/issues/643#issuecomment-285008041
namedExports: {
react: ['Component', 'createContext']
}
}
const snapshotOptions = {
matchSnapshot,
printInfo: logSnapshot,
snapshotPath: './.size-snapshot.json'
}
const createFlowBundlePlugin = {
transformBundle(code, outputOptions) {
const file = path.join(rootPath, `${outputOptions.file}.flow`)
const content = "// @flow\n\nexport * from '../src';"
fs.writeFileSync(file, content)
}
}
export default [
{
input,
output: {
file: `dist/${pkg.name}.js`,
format: 'umd',
sourcemap: true,
exports: 'named',
name,
globals
},
external: Object.keys(globals),
plugins: [
nodeResolve(),
babel(getBabelOptions({useESModules: true})),
commonjs(commonjsOptions),
replace({
'process.env.NODE_ENV': JSON.stringify('development'),
'process.env.VERSION': JSON.stringify(pkg.version)
}),
sizeSnapshot(snapshotOptions)
]
},
{
input,
output: {
file: `dist/${pkg.name}.min.js`,
format: 'umd',
exports: 'named',
name,
globals
},
external: Object.keys(globals),
plugins: [
nodeResolve(),
babel(getBabelOptions({useESModules: true})),
commonjs(commonjsOptions),
replace({
'process.env.NODE_ENV': JSON.stringify('production'),
'process.env.VERSION': JSON.stringify(pkg.version)
}),
sizeSnapshot(snapshotOptions),
terser()
]
},
{
input,
output: {file: pkg.main, format: 'cjs', exports: 'named'},
external,
plugins: [
createFlowBundlePlugin,
babel(getBabelOptions({useESModules: false})),
replace({'process.env.VERSION': JSON.stringify(pkg.version)}),
sizeSnapshot(snapshotOptions)
]
},
{
input,
output: {file: pkg.module, format: 'esm'},
external,
plugins: [
babel(getBabelOptions({useESModules: true})),
replace({'process.env.VERSION': JSON.stringify(pkg.version)}),
sizeSnapshot(snapshotOptions)
]
},
{
input,
output: {file: pkg.unpkg, format: 'esm'},
plugins: [
nodeResolve(),
babel(getBabelOptions({useESModules: true})),
commonjs(commonjsOptions),
replace({
'process.env.NODE_ENV': JSON.stringify('development'),
'process.env.VERSION': JSON.stringify(pkg.version)
})
// size-snapshot is disabled until this is resolved:
// https://github.com/TrySound/rollup-plugin-size-snapshot/issues/24
]
}
]