-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathbuild_config.js
73 lines (72 loc) · 1.53 KB
/
build_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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const cjsPlugin = require('@rollup/plugin-commonjs');
const jsonPlugin = require('@rollup/plugin-json');
const { nodeResolve } = require('@rollup/plugin-node-resolve');
module.exports = {
build_dir: "build",
copyrightYears: `2006-${new Date().getFullYear()}`,
clean_css: {
level: 2
},
clean_css_beautify: {
level: 0,
format: 'beautify'
},
rollup: {
core: {
input: {
plugins: [
cjsPlugin(),
jsonPlugin(),
nodeResolve(),
// TODO: remove with version 12
{
transform: (x) => {
if (/var module/.exec(x)) {
// remove shim that only breaks things for rollup
return x.replace(/var module\s*=.*$/m, "");
}
}
}
]
}
},
node: {
output: {
format: "cjs",
strict: false,
exports: "auto",
footer: ""
}
},
browser_iife: {
input: {
plugins: [
jsonPlugin(),
cjsPlugin(),
nodeResolve()
]
},
output: {
name: "hljs",
format: "iife",
footer: "if (typeof exports === 'object' && typeof module !== 'undefined') { module.exports = hljs; }",
interop: false
}
}
},
terser: {
format: {
max_line_len: 80,
ascii_only: true
},
compress: {
ecma: 2015,
unsafe_arrows: true,
passes: 2,
unsafe: true,
warnings: true,
dead_code: true,
toplevel: "funcs"
}
}
};