2023-06-22 11:32:40 +01:00
|
|
|
// fileSmasher ~.~
|
|
|
|
// for when you're just too lazy to
|
|
|
|
// do it properly.
|
|
|
|
|
2023-06-22 11:58:12 +01:00
|
|
|
import { readdirSync, statSync, readFileSync, writeFileSync } from "fs";
|
2023-06-22 11:32:40 +01:00
|
|
|
|
2023-07-13 16:33:48 +01:00
|
|
|
const tsFileData:Array<string> = new Array<string>();
|
2023-06-22 11:32:40 +01:00
|
|
|
|
|
|
|
function readDir(nam:string) {
|
|
|
|
const files = readdirSync(nam);
|
|
|
|
for (const file of files) {
|
|
|
|
if (nam == "./" && (file.startsWith(".") || file == "tooling" || file == "lib" || file == "node_modules" || file == "combined.ts")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a very dumb way of checking for folders
|
|
|
|
// protip: don't do this.
|
|
|
|
if (statSync(`${nam}/${file}`).size == 0) {
|
|
|
|
readDir(`${nam}/${file}`);
|
|
|
|
} else if (file.endsWith(".ts")) {
|
|
|
|
tsFileData.push(readFileSync((`${nam}/${file}`).replace("//", "/")).toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readDir("./");
|
|
|
|
|
|
|
|
const combinedFiles = tsFileData.join("\n");
|
|
|
|
|
|
|
|
const splitLines = combinedFiles.split("\n");
|
|
|
|
const resultLines:Array<string> = new Array<string>();
|
|
|
|
|
|
|
|
const unExport = [
|
|
|
|
"class:ReaderBase",
|
|
|
|
"class:ReaderLE",
|
|
|
|
"class:ReaderBE",
|
|
|
|
"class:WriterBase",
|
|
|
|
"class:WriterLE",
|
|
|
|
"class:WriterBE",
|
|
|
|
];
|
|
|
|
|
|
|
|
function checkForMatchAndReplace(s:string) {
|
|
|
|
for (const tUExp of unExport) {
|
|
|
|
const spl = tUExp.split(":");
|
|
|
|
const type = spl[0];
|
|
|
|
if (s.startsWith(`export ${type} ${spl[1]}`)) {
|
|
|
|
return s.replace(`export ${type} ${spl[1]}`, `${type} ${spl[1]}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let's process the file to make it usable
|
|
|
|
for (const line of splitLines) {
|
|
|
|
// Throw away imports as they aren't needed
|
|
|
|
// TODO: Add allow list for npm module imports
|
|
|
|
if (line.startsWith("import")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Fix up classes, interfaces and such.
|
|
|
|
resultLines.push(checkForMatchAndReplace(line));
|
|
|
|
//resultLines.push(line.replace("export class", "class").replace("export interface", "interface").replace("export enum", "enum"));
|
|
|
|
}
|
|
|
|
|
2023-07-28 09:48:08 +01:00
|
|
|
// Investigation
|
2023-07-28 09:44:59 +01:00
|
|
|
const finalOutput = resultLines.join("\n");
|
|
|
|
console.log(finalOutput);
|
2023-07-28 09:48:08 +01:00
|
|
|
console.log(__dirname);
|
2023-07-28 09:44:59 +01:00
|
|
|
writeFileSync("./combined.ts", finalOutput);
|