-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathrollup.config.js
51 lines (45 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
50
51
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { createFilter } from '@rollup/pluginutils';
import terser from '@rollup/plugin-terser';
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: 'build/index.js',
output: {
name: 'live2d_widget',
file: 'dist/waifu-tips.js',
format: 'iife',
},
plugins: [
nodeResolve(),
string({
include: '**/*.svg',
}),
terser(),
],
context: 'this',
};