forked from cssinjs/jss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
154 lines (138 loc) · 3.83 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
import fs from 'fs'
import path from 'path'
import {nodeResolve} from '@rollup/plugin-node-resolve'
import {babel} from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import replace from '@rollup/plugin-replace'
import {terser} from 'rollup-plugin-terser'
import {sizeSnapshot} from 'rollup-plugin-size-snapshot'
import camelCase from 'camelcase'
const {getBabelOptions} = require('./babelOptions')
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('.') && !path.isAbsolute(id)
const getBabelConfig = ({useESModules}) => ({
babelHelpers: 'runtime',
exclude: /node_modules/,
babelrc: false,
configFile: false,
...getBabelOptions({useESModules})
})
const commonjsOptions = {
include: [
/\/node_modules\/react\//,
/\/node_modules\/prop-types\//,
/\/node_modules\/react-display-name\//,
/\/node_modules\/hoist-non-react-statics\//
],
ignoreGlobal: true
}
const snapshotOptions = {
matchSnapshot,
printInfo: logSnapshot,
snapshotPath: './.size-snapshot.json'
}
const createFlowBundlePlugin = {
renderChunk(code, chunk, 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(getBabelConfig({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(getBabelConfig({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(getBabelConfig({useESModules: false})),
replace({'process.env.VERSION': JSON.stringify(pkg.version)}),
sizeSnapshot(snapshotOptions)
]
},
{
input,
output: {file: pkg.module, format: 'esm'},
external,
plugins: [
babel(getBabelConfig({useESModules: true})),
replace({'process.env.VERSION': JSON.stringify(pkg.version)}),
sizeSnapshot(snapshotOptions)
]
},
{
input,
output: {file: pkg.unpkg, format: 'esm'},
plugins: [
nodeResolve(),
babel(getBabelConfig({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
]
}
]