From c39ec6e44d2090bb514f1a989f6163825523a320 Mon Sep 17 00:00:00 2001 From: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Sun, 11 Aug 2024 17:38:30 +0200 Subject: [PATCH] feat: :tada: initial commit --- README.md | 3 +++ lune/rojo/roblox_sync_config_generator.luau | 28 +++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 README.md create mode 100644 lune/rojo/roblox_sync_config_generator.luau 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))