rbxts-pako/build.ts
Erica Marigold 659cde4017
feat: prepare as pesde & npm package
* 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
2024-12-27 11:17:18 +00:00

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