-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.js
66 lines (63 loc) · 1.68 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
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import copy from "rollup-plugin-copy";
import {
chromeExtension,
simpleReloader,
} from "rollup-plugin-chrome-extension";
import del from "rollup-plugin-delete";
import { terser } from "rollup-plugin-terser";
import zip from "rollup-plugin-zip";
import transformCss from "./src/utils/cssTransformer";
const isProd = process.env.NODE_ENV === "production";
export default [
{
input: "src/index.js",
output: {
dir: "dist",
format: "esm",
},
plugins: [
// delete the /dist folder
...(isProd ? [del({ targets: "dist/*", runOnce: true })] : []),
// copy essential KaTeX files from /node_modules to /src
copy({
targets: [
// copy KaTeX required fonts to /src, so that it gets bundled into /dist
{ src: "node_modules/katex/dist/fonts/*", dest: "src/assets/fonts" },
// copy KaTeX required css to /src, so that it gets bundled into /dist
{
src: "node_modules/katex/dist/katex.css",
dest: "src/assets",
transform: transformCss,
},
],
copyOnce: true,
}),
],
},
{
input: "src/manifest.json",
output: {
dir: "dist",
format: "esm",
plugins: isProd
? [
terser({
compress: {
drop_console: true,
},
}),
zip({ dir: "releases" }),
]
: [],
},
plugins: [
// always put chromeExtension() before other plugins
chromeExtension(),
simpleReloader(),
resolve(),
commonjs(),
],
},
];