-
Notifications
You must be signed in to change notification settings - Fork 91
/
rollup.debug.config.js
43 lines (40 loc) · 1007 Bytes
/
rollup.debug.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
import json from '@rollup/plugin-json';
import commonjs from "@rollup/plugin-commonjs";
export default [
{
input: 'src/WeChat.request.beta.js',
output: {
file: 'js/WeChat.request.beta.js',
banner: '/* README: https://github.com/VirgilClyne/GetSomeFries */',
format: 'es'
},
plugins: [json(), commonjs()],
},
{
input: 'src/WeChat.response.beta.js',
output: {
file: 'js/WeChat.response.beta.js',
banner: '/* README: https://github.com/VirgilClyne/GetSomeFries */',
format: 'es'
},
plugins: [json(), commonjs()],
},
{
input: 'src/TikTok.request.beta.js',
output: {
file: 'js/TikTok.request.beta.js',
banner: '/* README: https://github.com/VirgilClyne/GetSomeFries */',
format: 'es'
},
plugins: [json(), commonjs()],
},
{
input: 'src/TikTok.response.beta.js',
output: {
file: 'js/TikTok.response.beta.js',
banner: '/* README: https://github.com/VirgilClyne/GetSomeFries */',
format: 'es'
},
plugins: [json(), commonjs()],
},
];