-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake-client.js
73 lines (68 loc) · 1.76 KB
/
make-client.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
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
const fs = require("fs");
const path = require("path");
// List of all the files to concatenate
const files = [
"./lib/fingerprint2.min.js",
"./lib/lz-string.min.js",
"./lib/detect.min.js",
"./lib/moment.min.js",
"./lib/mtwist.js",
"./src/maths.js",
"./src/hspace.js",
"./src/linky.js",
"./src/zjson.js",
"./src/protocol.js",
"./src/utils.js",
"./src/db.js",
"./src/onecup.js",
"./src/transloader-client.js",
"./src/trans.js",
"./src/mxserver-client.js",
"./src/account.js",
"./src/engine.js",
"./src/colors.js",
"./src/sound.js",
"./src/maps.js",
"./src/sim.js",
"./src/simsend.js",
"./src/survival.js",
"./src/interpolator.js",
"./src/things.js",
"./src/unit.js",
"./src/parts.js",
"./src/ai.js",
"./src/aidata.js",
"./src/network.js",
"./src/ui.js",
"./src/settings.js",
"./src/challenges.js",
"./src/grid.js",
"./src/design.js",
"./src/battle.js",
"./src/buildbar.js",
"./src/fleet.js",
"./src/tutor.js",
"./src/galaxy.js",
"./src/galaxydata.js",
"./src/bubbles.js",
"./src/menus.js",
"./src/chat.js",
"./src/battleroom.js",
//"./src/tournaments.js",
//"./src/mod.js",
"./src/vbattle.js",
"./src/vparts.js",
"./src/arcon.js",
"./atlases/atlas.js",
"./src/part_history.js",
];
// Read and concatenate the contents of all the files
const contents = files.reduce((acc, file) => {
const filePath = path.join(__dirname, file);
const fileContents = fs.readFileSync(filePath, "utf-8");
return acc + fileContents + "\n";
}, "");
// Write the concatenated contents to the output file in the public/js directory
const outputFilePath = path.join(__dirname, "../website/public/js/arcon.js");
fs.writeFileSync(outputFilePath, contents, "utf-8");
console.log("Successfully created arcon.js");