forked from visjs/vis-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
75 lines (70 loc) · 1.47 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
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import nodeBuiltins from 'rollup-plugin-node-builtins';
import babel from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import { generateHeader } from 'vis-dev-utils';
import css from 'rollup-plugin-css-porter';
import copy from 'rollup-plugin-copy';
import { BABEL_IGNORE_RE } from 'vis-dev-utils';
const banner = generateHeader({ name: 'vis-timeline and vis-graph2d' });
const GLOBALS = {
moment: "moment",
hammerjs: "hammerjs"
};
const copyStatic = copy({
targets: [
{ src: 'types', dest: 'dist' }
]
});
const babelConfig = {
babelHelpers: 'runtime',
exclude: BABEL_IGNORE_RE,
};
export default [{
input: 'lib/bundle-legacy.js',
output: {
file: 'dist/vis-timeline-graph2d.esm.js',
format: 'esm',
banner,
sourcemap: true,
globals: GLOBALS
},
plugins: [
commonjs(),
nodeBuiltins(),
nodeResolve({ browser: true }),
babel(babelConfig),
css({
dest: 'dist/vis-timeline-graph2d.css'
}),
copyStatic
]
}, {
input: 'lib/bundle-legacy.js',
output: {
file: 'dist/vis-timeline-graph2d.min.js',
name: 'vis',
extend: true,
exports: 'named',
format: 'umd',
banner,
sourcemap: true,
globals: GLOBALS
},
plugins: [
commonjs(),
nodeBuiltins(),
nodeResolve({ browser: true }),
babel(babelConfig),
terser({
output: {
comments: "some"
}
}),
css({
dest: 'dist/vis-timeline-graph2d.css'
}),
copyStatic
]
}];