-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
58 lines (54 loc) · 1.21 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
import resolve from '@rollup/plugin-node-resolve';
import commonJs from '@rollup/plugin-commonjs';
import babel from '@rollup/plugin-babel';
import postCss from 'rollup-plugin-postcss';
import { terser } from 'rollup-plugin-terser';
// import dts from 'rollup-plugin-dts';
import pkg from './package.json';
// ref: https://github.com/vasturiano/force-graph/blob/master/rollup.config.js
const shared = {
format: 'umd',
name: 'TreeHouze',
banner: `// ${pkg.name} v${pkg.version} - ${pkg.repository.url}`
};
export default [
{ // UMD
input: 'src/index.js',
output: [
{
...shared,
file: pkg.main,
sourcemap: true
},
{ // minify
...shared,
file: pkg.unpkg,
plugins: [terser({
output: { comments: '/Version/' }
})]
}
],
plugins: [
postCss({ plugins: [] }),
babel({ exclude: 'node_modules/**' }),
resolve(),
commonJs()
]
},
{ // ES module
input: 'src/index.js',
output: [
{
format: 'es',
file: pkg.module,
}
],
external: [
...Object.keys(pkg.dependencies || {})
],
plugins: [
postCss({ plugins: [] }),
babel()
]
},
];