-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake-server.js
39 lines (35 loc) · 1023 Bytes
/
make-server.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
const fs = require("fs");
const path = require("path");
// List of all the files to concatenate
const files = [
"./lib/mtwist.js",
"./src/maths.js",
"./src/hspace.js",
"./src/zjson.js",
"./src/protocol.js",
"./src/transloader.js",
"./src/trans.js",
"./src/mxserver.js",
"./src/utils.js",
"./src/colors.js",
"./src/maps.js",
"./src/sim.js",
"./src/simsend.js",
"./src/survival.js",
"./src/things.js",
"./src/unit.js",
"./src/parts.js",
"./src/ai.js",
//"./src/aidata.js",
"./src/grid.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, "arcon.js");
fs.writeFileSync(outputFilePath, contents, "utf-8");
console.log("Successfully created arcon.js");