Skip to content

Instantly share code, notes, and snippets.

View pxky's full-sized avatar
:atom:
probably dead

pxky

:atom:
probably dead
  • hell
  • 11:37 (UTC +12:00)
View GitHub Profile
@pxky
pxky / transform-mantle.luau
Last active January 2, 2025 14:23
lune script to transform mantle output into a usable format
local fs = require("@lune/fs")
local serde = require("@lune/serde")
local process = require("@lune/process")
local output_path = process.args[1]
local transformed_path = process.args[2]
local output_types = true
local input = serde.decode("json", fs.readFile(output_path))