Github Action: Auto Minified JS files

This commit is contained in:
hexahigh 2023-03-20 08:35:52 +00:00 committed by github-actions[bot]
parent 898c096a0f
commit f7edbe8408

1
js/min/copyAndMove.min.js vendored Normal file
View File

@ -0,0 +1 @@
const fs=require("fs");var AX={copy:function(a,b){fs.writeFileSync(b,fs.readFileSync(a),function(a){if(a)throw a;console.log("Successfully copied file!")})},move:function(a,b){fs.rename(a,b,function(a){if(a)throw a;console.log("Successfully moved - AKA renamed!")})}};