commit c39ec6e44d2090bb514f1a989f6163825523a320 Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Sun Aug 11 17:38:30 2024 +0200 feat: :tada: initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..85a7e80 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# pesde scripts + +This repository hosts scripts & utilities for [pesde](https://github.com/daimond113/pesde) diff --git a/lune/rojo/roblox_sync_config_generator.luau b/lune/rojo/roblox_sync_config_generator.luau new file mode 100644 index 0000000..30cfe38 --- /dev/null +++ b/lune/rojo/roblox_sync_config_generator.luau @@ -0,0 +1,28 @@ +local process = require("@lune/process") +local fs = require("@lune/fs") +local serde = require("@lune/serde") + +local package_directory = process.cwd + +local output = { + tree = {}, +} + +for _, file in process.args do + local name = string.gsub(file, ".luau?$", "") + + if name == "init" then + output["$path"] = file + continue + end + + output.tree[name] = { + ["$path"] = file, + } +end + +if not output["$path"] then + output["$className"] = "Folder" +end + +fs.writeFile(package_directory .. "/default.project.json", serde.encode("json", output, true))