forked from stevenjoezhang/live2d-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
49 lines (43 loc) · 991 Bytes
/
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
import { nodeResolve } from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import { createFilter } from "@rollup/pluginutils";
import nodePolyfills from "rollup-plugin-polyfill-node";
function string(opts = {}) {
if (!opts.include) {
throw Error("include option should be specified");
}
const filter = createFilter(opts.include, opts.exclude);
return {
name: "string",
transform(code, id) {
if (filter(id)) {
return {
code: `export default ${JSON.stringify(code)};`,
map: { mappings: "" },
};
}
},
renderChunk(code, chunk, outputOptions = {}) {
return (
`/*!
* Live2D Widget
* /~https://github.com/stevenjoezhang/live2d-widget
*/
` + code
);
},
};
}
export default {
input: "src/waifu-tips.js",
plugins: [
nodeResolve({
browser: true,
}),
commonjs(),
nodePolyfills(),
string({
include: "**/*.svg",
}),
],
};