-
Notifications
You must be signed in to change notification settings - Fork 12
/
rollup.config.js
144 lines (136 loc) · 2.93 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
import { babel } from '@rollup/plugin-babel'
import commonJS from '@rollup/plugin-commonjs'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import replace from '@rollup/plugin-replace'
import size from 'rollup-plugin-size'
import { terser } from 'rollup-plugin-terser'
import visualizer from 'rollup-plugin-visualizer'
const replaceDevPlugin = type =>
replace({
'process.env.NODE_ENV': `"${type}"`,
delimiters: ['', ''],
preventAssignment: true,
})
const extensions = ['.ts', '.tsx']
const babelPlugin = babel({
babelHelpers: 'bundled',
exclude: /node_modules/,
extensions,
})
export default function rollup() {
const options = {
input: 'src/index.ts',
jsName: 'ReactQueryKit',
external: ['@tanstack/react-query'],
globals: {
'@tanstack/react-query': 'ReactQuery',
},
}
return [
mjs(options),
esm(options),
cjs(options),
umdDev(options),
umdProd(options),
]
}
function mjs({ input, external }) {
return {
// ESM
external,
input,
output: {
format: 'esm',
sourcemap: true,
dir: `build/lib`,
preserveModules: true,
entryFileNames: '[name].mjs',
},
plugins: [babelPlugin, commonJS(), nodeResolve({ extensions })],
}
}
function esm({ input, external }) {
return {
// ESM
external,
input,
output: {
format: 'esm',
dir: `build/lib`,
sourcemap: true,
preserveModules: true,
entryFileNames: '[name].esm.js',
},
plugins: [babelPlugin, commonJS(), nodeResolve({ extensions })],
}
}
function cjs({ input, external }) {
return {
// CJS
external,
input,
output: {
format: 'cjs',
sourcemap: true,
dir: `build/lib`,
preserveModules: true,
exports: 'named',
entryFileNames: '[name].js',
},
plugins: [babelPlugin, commonJS(), nodeResolve({ extensions })],
}
}
function umdDev({ input, external, globals, jsName }) {
return {
// UMD (Dev)
external,
input,
output: {
format: 'umd',
sourcemap: true,
file: `build/umd/index.development.js`,
name: jsName,
globals,
},
plugins: [
babelPlugin,
commonJS(),
nodeResolve({ extensions }),
replaceDevPlugin('development'),
],
}
}
function umdProd({ input, external, globals, jsName }) {
return {
// UMD (Prod)
external,
input,
output: {
format: 'umd',
sourcemap: true,
file: `build/umd/index.production.js`,
name: jsName,
globals,
},
plugins: [
babelPlugin,
commonJS(),
nodeResolve({ extensions }),
replaceDevPlugin('production'),
terser({
mangle: true,
compress: true,
}),
size({}),
visualizer({
filename: `build/stats-html.html`,
gzipSize: true,
}),
visualizer({
filename: `build/stats.json`,
json: true,
gzipSize: true,
}),
],
}
}