summary refs log tree commit diff
path: root/bundle/scripts/utils.js
blob: bf960532f951698012acab49d90e6abed35a8a54 (plain) (blame)
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
const path = require("path");
const fs = require("fs");
const { env } = require("process");
const { execSync } = require("child_process");
const { argv, stdout, exit } = require("process");

const parts = ["api", "util", "cdn", "gateway", "bundle"];

function copyRecursiveSync(src, dest) {
	//if (verbose) console.log(`cpsync: ${src} -> ${dest}`);
	let exists = fs.existsSync(src);
	if (!exists) {
		console.log(src + " doesn't exist, not copying!");
		return;
	}
	let stats = exists && fs.statSync(src);
	let isDirectory = exists && stats.isDirectory();
	if (isDirectory) {
		fs.mkdirSync(dest, { recursive: true });
		fs.readdirSync(src).forEach(function (childItemName) {
			copyRecursiveSync(
				path.join(src, childItemName),
				path.join(dest, childItemName)
			);
		});
	} else {
		fs.copyFileSync(src, dest);
	}
}

function execIn(cmd, workdir) {
	try {
		return execSync(cmd, {
			cwd: workdir,
			shell: true,
			env: process.env,
			encoding: "utf-8",
		});
	} catch (error) {
		return error.stdout;
	}
}

function getLines(output) {
	return output.split("\n").length;
}

module.exports = { 
	//consts
	parts,
	//functions
	copyRecursiveSync, execIn, getLines
};