-
-
Notifications
You must be signed in to change notification settings - Fork 374
/
rollup.config.js
115 lines (111 loc) · 2.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import commonjs from "@rollup/plugin-commonjs";
import nodeResolve from "@rollup/plugin-node-resolve";
import babel from "@rollup/plugin-babel";
import typescript from "rollup-plugin-typescript2";
import terser from "@rollup/plugin-terser";
import { generateHeader } from "vis-dev-utils";
import assets from "postcss-assets";
import postcss from "rollup-plugin-postcss";
import { BABEL_IGNORE_RE } from "vis-dev-utils";
// TypeScript because Babel transpiles modules in isolation, therefore no type reexports.
// CommonJS because Babel is not 100 % ESM.
const banner = generateHeader();
const plugins = {
nodeResolve: nodeResolve({
browser: true,
extensions: [".ts", ".js", ".json"],
}),
typescript: typescript({
tsconfig: "tsconfig.code.json",
}),
commonjs: commonjs(),
babel: babel({
extensions: [".ts", ".js"],
babelHelpers: "runtime",
exclude: BABEL_IGNORE_RE,
}),
minify: terser({
output: {
comments: (_node, { value }) => /@license/.test(value),
},
}),
cssRaw: postcss({
extract: "dist/vis-network.css",
inject: false,
minimize: false,
sourceMap: false,
plugins: [
assets({
loadPaths: ["lib/assets/"],
}),
],
}),
cssMin: postcss({
extract: "dist/vis-network.min.css",
inject: false,
minimize: true,
sourceMap: false,
plugins: [
assets({
loadPaths: ["lib/assets/"],
}),
],
}),
};
export default [
{
input: "lib/index-legacy-bundle.ts",
output: [
{
file: "dist/vis-network.esm.js",
format: "esm",
banner,
sourcemap: true,
},
{
file: "dist/vis-network.js",
format: "umd",
exports: "named",
name: "vis",
extend: true,
banner,
sourcemap: true,
},
],
plugins: [
plugins.commonjs,
plugins.nodeResolve,
plugins.cssRaw,
plugins.typescript,
plugins.babel,
],
},
{
input: "lib/index-legacy-bundle.ts",
output: [
{
file: "dist/vis-network.esm.min.js",
format: "esm",
banner,
sourcemap: true,
},
{
file: "dist/vis-network.min.js",
format: "umd",
exports: "named",
name: "vis",
extend: true,
banner,
sourcemap: true,
},
],
plugins: [
plugins.commonjs,
plugins.nodeResolve,
plugins.cssMin,
plugins.typescript,
plugins.babel,
plugins.minify,
],
},
];