mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 21:00:37 +00:00
70 lines
1.4 KiB
Lua
70 lines
1.4 KiB
Lua
local fs = require("@lune/fs")
|
|
local stdio = require("@lune/stdio")
|
|
local task = require("@lune/task")
|
|
|
|
local terracotta = require("terracotta")
|
|
|
|
local function map<k, v>(tbl: { [k]: v }, callback: (k: k, v: v) -> v)
|
|
for k, v in tbl do
|
|
local ok, val = pcall(function()
|
|
return callback(k, v)
|
|
end)
|
|
|
|
if not ok then
|
|
tbl[k] = nil
|
|
else
|
|
tbl[k] = val
|
|
end
|
|
end
|
|
|
|
return tbl
|
|
end
|
|
|
|
print("\n")
|
|
|
|
local dirChildren = fs.readDir("out/rbxts")
|
|
local ENTYRPOINTS = map(dirChildren, function(k, path)
|
|
if path ~= "rbxts" and path:find("%.lua$") then
|
|
print(`{k}/{#dirChildren} include`, path)
|
|
return "out/rbxts/" .. path
|
|
end
|
|
|
|
print(`{k}/{#dirChildren} ignore`, path)
|
|
error("not a lua file")
|
|
end)
|
|
|
|
function main()
|
|
local bundleStart = os.clock()
|
|
|
|
local out = terracotta.Build({
|
|
entryPoints = ENTYRPOINTS,
|
|
bundle = true,
|
|
rules = {
|
|
"remove_spaces",
|
|
"remove_unused_while",
|
|
"remove_unused_if_branch",
|
|
"remove_empty_do",
|
|
},
|
|
})
|
|
|
|
print(`\nbundled {#ENTYRPOINTS} files in {os.clock() - bundleStart}s`)
|
|
|
|
local fsStart = os.clock()
|
|
for pos, path in ENTYRPOINTS do
|
|
local bundle = out[path]
|
|
|
|
path = "out/" .. path:split("/")[3]
|
|
stdio.write(`\x1B[2K\r{pos}/{#ENTYRPOINTS} write {path}`)
|
|
task.wait(0.1)
|
|
|
|
fs.writeFile(path, bundle)
|
|
end
|
|
|
|
stdio.write(`\x1B[2K\rwrote {#ENTYRPOINTS} files in {os.clock() - fsStart}s\n`)
|
|
fs.copy("src/init.luau", "out/init.luau", {
|
|
overwrite = true,
|
|
})
|
|
stdio.write("wrote luau types to out/init.luau!")
|
|
end
|
|
|
|
return main()
|