-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrollup.config.js
73 lines (67 loc) · 1.6 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
import * as meta from "./package.json" with { type: "json" };
// ------ JavaScript
import { babel } from "@rollup/plugin-babel";
import commonjs from "@rollup/plugin-commonjs";
import eslint from "@rollup/plugin-eslint";
import terser from "@rollup/plugin-terser";
// ------ CSS
import sass from "rollup-plugin-sass";
// ------ global
import resolve from "@rollup/plugin-node-resolve";
const plugins = [
eslint({
include: ["src/**/*.js"],
}),
babel({
babelHelpers: "bundled",
include: "src/**",
presets: ["@babel/preset-env"],
}),
// terser(),
sass({ output: true }),
resolve(),
commonjs(),
];
const config = {
input: "src/index.js",
external: Object.keys(meta.default.dependencies || {}).filter((key) =>
/^d3-/.test(key),
),
output: {
file: `dist/${meta.default.name}.js`,
name: "d3",
format: "umd",
indent: false,
extend: true,
banner: `// ${meta.default.homepage} v${meta.default.version} Copyright ${new Date().getFullYear()} ${meta.default.author.name}`,
globals: Object.assign(
{},
...Object.keys(meta.default.dependencies || {})
.filter((key) => /^d3-/.test(key))
.map((key) => ({ [key]: "d3" })),
),
},
watch: {
chokidar: false,
include: ["src/**", "styles/**", "example/*.html", "example/data/*.*"],
},
plugins,
};
export default [
config,
{
...config,
output: {
...config.output,
file: `dist/${meta.default.name}.min.js`,
},
plugins: [
...config.plugins,
terser({
output: {
preamble: config.output.banner,
},
}),
],
},
];