Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit 07afe04

Browse files
committedDec 21, 2020
ci: fix code minifier script
1 parent cfcf9c8 commit 07afe04

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed
 

‎package-lock.json

+20-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"electron-rebuild": "^2.3.4",
113113
"node-abi": "2.19.3",
114114
"node-json-minify": "1.0.0",
115-
"uglify-es": "3.3.10"
115+
"terser": "^5.5.1"
116116
},
117117
"optionalDependencies": {
118118
"cson-parser": "4.0.7"

‎prebuild-minify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const fs = require("fs");
22
const path = require("path");
33
const stdout = process.stdout;
4-
const UglifyJS = require("uglify-es");
4+
const UglifyJS = require("terser");
55
const CleanCSS = require("clean-css");
66
JSON.minify = require("node-json-minify");
77

@@ -36,7 +36,7 @@ async function recursiveMinify(dirPath) {
3636

3737
switch (filePath.split(".").pop()) {
3838
case "js":
39-
let minified = UglifyJS.minify(fs.readFileSync(filePath, {encoding: "utf-8"}), {
39+
let minified = await UglifyJS.minify(fs.readFileSync(filePath, {encoding: "utf-8"}), {
4040
compress: {
4141
dead_code: false,
4242
unused: false,

0 commit comments

Comments
 (0)
This repository has been archived.