-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostbuild.js
More file actions
95 lines (81 loc) · 2.37 KB
/
postbuild.js
File metadata and controls
95 lines (81 loc) · 2.37 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const path = require("path");
const fs = require("fs");
/** @param {string} str */
function posixify(str) {
return str.replace(/\\/g, "/");
}
/** @param {string} dir */
function mkdirp(dir) {
try {
fs.mkdirSync(dir, { recursive: true });
} catch (/** @type {any} */ e) {
if (e.code === "EEXIST") {
if (!fs.statSync(dir).isDirectory()) {
throw new Error(
`Cannot create directory ${dir}, a file already exists at this position`
);
}
return;
}
throw e;
}
}
/**
* @param {string} source
* @param {string} target
* @param {{
* filter?: (basename: string) => boolean;
* replace?: Record<string, string>;
* }} opts
*/
function copy(source, target, opts = {}) {
if (!fs.existsSync(source)) return [];
/** @type {string[]} */
const files = [];
const prefix = posixify(target) + "/";
const regex = opts.replace
? new RegExp(`\\b(${Object.keys(opts.replace).join("|")})\\b`, "g")
: null;
/**
* @param {string} from
* @param {string} to
*/
function go(from, to) {
if (opts.filter && !opts.filter(path.basename(from))) return;
const stats = fs.statSync(from);
if (stats.isDirectory()) {
fs.readdirSync(from).forEach((file) => {
go(path.join(from, file), path.join(to, file));
});
} else {
mkdirp(path.dirname(to));
if (opts.replace) {
const data = fs.readFileSync(from, "utf-8");
fs.writeFileSync(
to,
data.replace(
/** @type {RegExp} */ (regex),
(_match, key) =>
/** @type {Record<string, string>} */ (
opts.replace
)[key]
)
);
} else {
fs.copyFileSync(from, to);
}
files.push(
to === target
? posixify(path.basename(to))
: posixify(to).replace(prefix, "")
);
}
}
go(source, target);
return files;
}
copy("./resources", "./pkg", {
replace: {
VERSION: JSON.parse(fs.readFileSync("./package.json")).version + "",
},
});