-
Notifications
You must be signed in to change notification settings - Fork 43
/
rollup.config.js
60 lines (58 loc) · 1.32 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
import resolve from '@rollup/plugin-node-resolve';
import commonJs from '@rollup/plugin-commonjs';
import babel from '@rollup/plugin-babel';
import terser from "@rollup/plugin-terser";
import dts from 'rollup-plugin-dts';
import pkg from './package.json' assert { type: 'json' };
const umdConf = {
format: 'umd',
name: 'ThreeForceGraph',
globals: { three: 'THREE' },
banner: `// Version ${pkg.version} ${pkg.name} - ${pkg.homepage}`
};
export default [
{
external: ['three'],
input: 'src/index.js',
output: [
{
...umdConf,
file: `dist/${pkg.name}.js`,
sourcemap: true,
},
{ // minify
...umdConf,
file: `dist/${pkg.name}.min.js`,
plugins: [terser({
output: { comments: '/Version/' }
})]
}
],
plugins: [
resolve(),
commonJs(),
babel({ exclude: 'node_modules/**' })
]
},
{ // ES module
input: 'src/index.js',
output: [
{
format: 'es',
file: `dist/${pkg.name}.mjs`
}
],
external: [...Object.keys(pkg.dependencies), ...Object.keys(pkg.peerDependencies)],
plugins: [
babel()
]
},
{ // expose TS declarations
input: 'src/index.d.ts',
output: [{
file: `dist/${pkg.name}.d.ts`,
format: 'es'
}],
plugins: [dts()]
}
];