-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpro.config.js
67 lines (54 loc) · 2.42 KB
/
pro.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
/*! MTW-BOILERPLATE-CHARTS: PRO.CONFIG.JS
*
* Author: sitdisch
* Source: https://github.com/mythemeway
* License: MIT
* Copyright © 2022 sitdisch
*/
const { argv } = require('process');
const { build, analyzeMetafile } = require('esbuild');
const canvas = require('./canvas.config.js');
const { spawnSync } = require('child_process');
const { mkdir, stat } = require('fs');
const { basename } = require('path');
console.log("[\x1b[90mesbuild\x1b[0m]: starting `\x1b[36mproduction-mode\x1b[0m`...")
build({
entryPoints: [`${canvas.path}`],
outfile: './dist/canvas.bundle.min.js',
logLevel: 'info',
bundle: true,
write: ((!(argv[2])) ? true : false),
minify: true,
metafile: true,
define: { MTW_CANVAS_ID: `'${canvas.id}'` },
}).then(result => {
analyzeMetafile(result.metafile).then(msg => {
console.log(msg+"\n[\x1b[90mesbuild\x1b[0m]: `\x1b[36mproduction-mode\x1b[0m` \x1b[1;32m[finished]\x1b[0m\n");
if (argv[2]) {
const outputPath = Object.keys(result.metafile.outputs)[0];
mkdir('./dist', { recursive: true }, err => {
if (err) throw err;
console.log("[\x1b[90mterser\x1b[0m]: Starting further `\x1b[36mminification-process\x1b[0m`...\n")
const cp = spawnSync('npx', ['terser', '-m', '-c', '-o', outputPath], {
input: result.outputFiles[0].text
});
if (!(cp.status))
stat(outputPath, (err, outputStats) => {
if (err) throw err;
const percent = Math.round((outputStats.size/result.metafile['outputs'][outputPath].bytes-1)*100);
var logTxt = '';
if (percent < 0) {
logTxt = '\x1b[1;32m'+percent+'%\x1b[0m)\x1b[1;33m [minimized]';
} else if (percent === 0) {
logTxt = '\x1b[1;90m'+percent+'%\x1b[0m)\x1b[1;90m [unchanged]';
} else {
logTxt = '\x1b[1;31m+'+percent+'%\x1b[0m)\x1b[1;31m [ENLARGED]';
};
console.log(' '+basename(outputPath)+' \x1b[36m'+Math.round(outputStats.size/100)/10+'kb\x1b[0m (size: '+logTxt+' \x1b[0m\n\n[\x1b[90mterser\x1b[0m]: `\x1b[36mminification-process\x1b[0m` \x1b[1;32m[finished]\x1b[0m\n');
})
else
console.log("\x1b[1;31m[ERROR]\x1b[0m => \x1b[0m[\x1b[90mterser\x1b[0m]: `\x1b[36mminification-process\x1b[0m` \x1b[1;31m[failed]\x1b[0m", Error(cp.stderr))
});
};
});
});