forked from visjs/vis-timeline
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrollup.config.js
More file actions
96 lines (91 loc) · 2.04 KB
/
rollup.config.js
File metadata and controls
96 lines (91 loc) · 2.04 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import commonjs from "@rollup/plugin-commonjs";
import nodeResolve from "@rollup/plugin-node-resolve";
import babel from "@rollup/plugin-babel";
import terser from "@rollup/plugin-terser";
import { generateHeader } from "vis-dev-utils";
import css from "rollup-plugin-postcss";
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,
},
{
file: "dist/vis-timeline-graph2d.mjs",
format: "esm",
banner,
sourcemap: true,
globals: GLOBALS,
},
],
plugins: [
commonjs(),
nodeResolve({ browser: true }),
babel(babelConfig),
css({
extract: "vis-timeline-graph2d.css",
minimize: false,
}),
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,
},
{
file: "dist/vis-timeline-graph2d.min.cjs",
name: "vis",
extend: true,
exports: "named",
format: "umd",
banner,
sourcemap: true,
globals: GLOBALS,
},
],
plugins: [
commonjs(),
nodeResolve({ browser: true }),
babel(babelConfig),
terser({
output: {
comments: "some",
},
}),
css({
extract: "vis-timeline-graph2d.min.css",
minimize: true,
}),
copyStatic,
],
},
];