mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-03 02:10:57 +01:00
* Add README with basic documentation * Add exports.ts with required TS and Luau exports * Add build script to extract Luau exports from exports.ts * Setup pesde package manifest * Apply formatting, setup stylua
24 lines
796 B
TypeScript
24 lines
796 B
TypeScript
// extracts the Luau exports section from a given file path
|
|
async function extractLuauExports(file: string): Promise<string | null> {
|
|
const input = await Bun.file(file).text();
|
|
const regex = /\/\/ @@@@@@@@@ LUAU_START @@@@@@@@@([\s\S]*?)\/\/ @@@@@@@@@ LUAU_END @@@@@@@@@/;
|
|
const match = input.match(regex);
|
|
if (match) {
|
|
// remove leading comment specifier from each line from each line
|
|
return match[1]
|
|
.split("\n")
|
|
.map((line) => line.replace(/\/\/\s?/, ""))
|
|
.join("\n")
|
|
.trim();
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
const EXPORTS_TS_FILE = "./src/exports.ts";
|
|
const EXPORTS_LUAU_FILE = "./out/init.luau";
|
|
|
|
console.log("extract and export Luau type thunk");
|
|
await extractLuauExports(EXPORTS_TS_FILE).then((exports) => Bun.write(EXPORTS_LUAU_FILE, exports!));
|
|
|
|
export {}; // treat as esmodule
|