Initial push

This commit is contained in:
Mark Marks 2024-09-21 19:12:15 +02:00
commit ee69c03334
31 changed files with 1578 additions and 0 deletions

15
.lune/dev.luau Normal file
View file

@ -0,0 +1,15 @@
--!nocheck
local process = require("@lune/process")
local task = require("@lune/task")
local function start_process(cmd: string, env: { string }?)
local arguments = string.split(cmd, " ")
local command = arguments[1]
table.remove(arguments, 1)
process.spawn(command, arguments, { stdio = "forward", env = env })
end
task.spawn(start_process, "rojo sourcemap dev.project.json -o sourcemap.json --watch")
task.spawn(start_process, "darklua process --config .darklua.json --watch lib/ dist/", { "ROBLOX_DEV=true" })
--task.spawn(start_process, "rojo serve dev.project.json")