-
-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathrollup.config.js
49 lines (48 loc) · 1.37 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
43
44
45
46
47
48
49
import typescript from 'rollup-plugin-typescript';
import copy from 'rollup-plugin-copy';
import obfuscatorPlugin from 'rollup-plugin-javascript-obfuscator';
export const input = 'src/proxy.ts';
export const output = {
file: 'public/dashboard/proxy.js',
format: 'umd',
name: 'proxy',
sourcemap: true
};
export const plugins = [
typescript(),
copy({
targets: [{
src: 'static/**/*',
dest: 'public/dashboard',
}, {
src: 'src/proxy.html',
dest: 'public/dashboard',
}, {
src: 'src/proxy.css',
dest: 'public/dashboard',
}, {
src: 'src/manifest.json',
dest: 'public/dashboard',
}, {
src: 'src/core/plugins/inspect_traffic.json',
dest: 'public/dashboard/devtools'
}, {
src: 'src/core/plugins/inspect_traffic.js',
dest: 'public/dashboard/devtools'
}, {
src: 'src/core/plugins/inspect_traffic.html',
dest: 'public/dashboard/devtools'
}],
}),
obfuscatorPlugin({
log: false,
sourceMap: true,
compact: true,
stringArray: true,
rotateStringArray: true,
transformObjectKeys: true,
stringArrayThreshold: 1,
stringArrayEncoding: 'rc4',
identifierNamesGenerator: 'mangled',
})
];