-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
53 lines (46 loc) · 1.26 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
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import del from 'rollup-plugin-delete';
import pkg from './package.json';
const globals = {
'@riot-tools/state-utils': 'RiotStateUtils',
'@riot-tools/sak': 'RiotSak',
};
const libraryName = 'RiotMeiosis';
export default [
{
input: 'lib/index.ts',
plugins: [
del({ targets: 'dist/*' }),
typescript({ useTsconfigDeclarationDir: true }),
terser(),
],
output: [
{
file: pkg.module,
format: 'es',
sourcemap: true
},
{
file: pkg.main,
name: libraryName,
format: 'umd',
sourcemap: true,
globals
},
{
name: libraryName,
file: pkg.cdn,
format: 'iife',
sourcemap: true,
inlineDynamicImports: true,
globals
}
],
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
...Object.keys(pkg.devDependencies || {}),
]
}
];