forked from stevenjoezhang/live2d-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
38 lines (32 loc) · 881 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
import { nodeResolve } from "@rollup/plugin-node-resolve";
import { createFilter } from "@rollup/pluginutils";
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(), string({
include: "**/*.svg",
})]
};