-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.mjs
44 lines (43 loc) · 1.09 KB
/
rollup.config.mjs
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
import babel from "@rollup/plugin-babel"
import resolve from "@rollup/plugin-node-resolve"
import copy from "rollup-plugin-copy"
import commonjs from "@rollup/plugin-commonjs"
import terser from "@rollup/plugin-terser"
import externalGlobals from "rollup-plugin-external-globals"
export default [
{
input: "src/js/index.js",
output: {
file: "site/_includes/index.js",
format: "esm",
},
plugins: [
resolve(),
babel({
presets: ["solid"],
}),
commonjs(),
copy({
targets: [
{
src: "node_modules/maplibre-gl/dist/maplibre-gl.js",
dest: "dist/static",
},
{
src: "node_modules/maplibre-gl/dist/maplibre-gl.css",
dest: "dist/static",
},
{
src: "node_modules/pym.js/dist/pym.v1.min.js",
dest: "dist/static",
},
],
}),
externalGlobals({
maplibregl: "window.maplibregl",
pym: "window.pym",
}),
...(process.env.NODE_ENV === "production" ? [terser()] : []),
],
},
]