-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathget-phaser-code.js
executable file
·48 lines (28 loc) · 1.02 KB
/
get-phaser-code.js
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
#!/usr/bin/node
const fs = require("fs");
const path = require("path");
const process = require("process");
const phaserHome = process.env["PHASER_PATH"];
console.log("Phaser Home: " + phaserHome)
const data = {};
function readDir(folder) {
const files = fs.readdirSync(folder);
for (const file of files) {
if (file.startsWith(".")) {
continue;
}
const fullPath = path.join(folder, file);
const stat = fs.statSync(fullPath);
const relPath = path.relative(phaserHome, fullPath);
if (stat.isFile()) {
const source = fs.readFileSync(fullPath).toString();
console.log("Store " + relPath);
data[relPath] = source;
} else {
readDir(fullPath);
}
}
}
readDir(path.join(phaserHome, "phaser/src"));
readDir(path.join(phaserHome, "phaser/plugins/fbinstant/src"));
fs.writeFileSync(path.join("../source/editor/app/plugins/helpcenter.phaser/_res/phaser-code.json"), JSON.stringify(data, null, 2));