-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.js
80 lines (77 loc) · 1.97 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
/* eslint-disable @typescript-eslint/camelcase */
import typescript from 'rollup-plugin-typescript2';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
const input = 'src/recoil-actions.ts';
const external = [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.peerDependencies || {})];
const excludeSpecFiles = { exclude: ['**/*.spec.ts', '**/*.spec.tsx'] };
const noDeclarationFiles = { compilerOptions: { declaration: false } };
export default [
// CommonJS
{
input,
output: { file: 'lib/recoil-actions.js', format: 'cjs', indent: false },
external,
plugins: [typescript({ tsconfigOverride: excludeSpecFiles })],
},
// ES
{
input,
output: { file: 'es/recoil-actions.js', format: 'es', indent: false },
external,
plugins: [typescript({ tsconfigOverride: noDeclarationFiles })],
},
// ES for Browsers
{
input,
output: { file: 'es/recoil-actions.mjs', format: 'es', indent: false },
external,
plugins: [
typescript({ tsconfigOverride: noDeclarationFiles }),
terser({
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
},
}),
],
},
// UMD Development
{
input,
output: {
file: 'umd/recoil-actions.js',
format: 'umd',
name: 'recoil-actions',
indent: false,
globals: { recoil: 'Recoil' },
},
external,
plugins: [typescript({ tsconfigOverride: noDeclarationFiles })],
},
// UMD Production
{
input,
output: {
file: 'umd/recoil-actions.min.js',
format: 'umd',
name: 'recoil-actions',
indent: false,
globals: { recoil: 'Recoil' },
},
external,
plugins: [
typescript({ tsconfigOverride: noDeclarationFiles }),
terser({
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
},
}),
],
},
];