Initial commit

This commit is contained in:
marked 2025-03-02 05:07:57 +01:00
commit f06242ebb5
33 changed files with 6060 additions and 0 deletions

16
src/init.luau Normal file
View file

@ -0,0 +1,16 @@
--!strict
local release = require("./release")
local sync = require("./sync")
local res = sync("jecs")
if not res.ok then
print(`Can't continue: {res.err}`)
return
end
if res.val == false then
print(`No changes made. Aborting.`)
return
end
release("jecs", { pesde = "marked/jecs_nightly", wally = "mark-marks/jecs-nightly" })