2021-10-10 11:02:25 +02:00
|
|
|
const { execSync } = require("child_process");
|
2021-10-07 18:21:01 +02:00
|
|
|
const path = require("path");
|
2021-10-10 11:02:25 +02:00
|
|
|
const fse = require("fs-extra");
|
2021-10-10 17:55:48 +02:00
|
|
|
const { getSystemErrorMap } = require("util");
|
|
|
|
const { argv } = require("process");
|
|
|
|
|
|
|
|
const dirs = ["api", "util", "cdn", "gateway", "bundle"];
|
|
|
|
|
|
|
|
const verbose = argv.includes("verbose") || argv.includes("v");
|
|
|
|
|
|
|
|
if(argv.includes("clean")){
|
|
|
|
dirs.forEach(a=>{
|
|
|
|
var d = "../"+a+"/dist";
|
|
|
|
if(fse.existsSync(d)) {
|
|
|
|
fse.rmSync(d,{recursive: true});
|
|
|
|
if(verbose) console.log(`Deleted ${d}!`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-10-07 18:21:01 +02:00
|
|
|
|
2021-10-10 12:35:46 +02:00
|
|
|
fse.copySync(path.join(__dirname, "..", "..", "api", "assets"), path.join(__dirname, "..", "dist", "api", "assets"));
|
|
|
|
fse.copySync(
|
|
|
|
path.join(__dirname, "..", "..", "api", "client_test"),
|
|
|
|
path.join(__dirname, "..", "dist", "api", "client_test")
|
|
|
|
);
|
|
|
|
fse.copySync(path.join(__dirname, "..", "..", "api", "locales"), path.join(__dirname, "..", "dist", "api", "locales"));
|
2021-10-10 17:55:48 +02:00
|
|
|
dirs.forEach(a=>{
|
|
|
|
fse.copySync("../"+a+"/src", "dist/"+a+"/src");
|
|
|
|
if(verbose) console.log(`Copied ${"../"+a+"/dist"} -> ${"dist/"+a+"/src"}!`);
|
|
|
|
});
|
2021-10-07 18:21:01 +02:00
|
|
|
|
2021-10-10 17:55:48 +02:00
|
|
|
console.log("Copying src files done");
|
2021-10-10 12:35:46 +02:00
|
|
|
console.log("Compiling src files ...");
|
2021-10-07 18:21:01 +02:00
|
|
|
|
2021-10-10 11:02:25 +02:00
|
|
|
console.log(
|
2021-10-10 12:35:46 +02:00
|
|
|
execSync(
|
2021-10-12 07:14:37 +02:00
|
|
|
"node \"" +
|
2021-10-10 12:35:46 +02:00
|
|
|
path.join(__dirname, "..", "node_modules", "typescript", "lib", "tsc.js") +
|
2021-10-12 08:05:24 +02:00
|
|
|
"\" -p \"" +
|
|
|
|
path.join(__dirname, "..") + "\"",
|
2021-10-10 12:35:46 +02:00
|
|
|
{
|
|
|
|
cwd: path.join(__dirname, ".."),
|
|
|
|
shell: true,
|
|
|
|
env: process.env,
|
|
|
|
encoding: "utf8",
|
|
|
|
}
|
|
|
|
)
|
2021-10-10 11:02:25 +02:00
|
|
|
);
|