forked from asciinema/asciinema-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
42 lines (38 loc) · 1.06 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
import babel from "@rollup/plugin-babel";
import resolve from "@rollup/plugin-node-resolve";
import rust from "@wasm-tool/rollup-plugin-rust";
function removeImportMetaUrl() {
// This plugin replaces import.meta.url with an empty string. Why?
// wasm-bindgen produces a wasm loading code having reference to
// import.meta.url, which becomes a dead code given rust plugin inlines the
// wasm blob, while import.meta.url causes bundling issues with popular
// bundlers (or requires plugins).
return {
resolveImportMeta(property, {moduleId}) {
if (property === 'url') { return "''" }
return null;
}
}
}
const plugins = [
babel({
exclude: "node_modules/**",
babelHelpers: "runtime",
presets: ["solid", "@babel/preset-env"],
plugins: [['@babel/transform-runtime']]
}),
resolve({ extensions: [".js", ".jsx"] }),
rust({ inlineWasm: true }),
removeImportMetaUrl()
];
export default {
input: "src/index.js",
output: [
{
file: "dist/index.js",
format: "es"
}
],
external: [/@babel\/runtime/],
plugins
};