mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
Erica Marigold
ca5f2d53c8
* Moved all util libs like `channel` into a `lib/` directory within `.lune`. Also includes a builder-pattern exec lib. * Added dev scripts for fmt (stylua) and typecheck (luau-lsp).
7 lines
262 B
Text
7 lines
262 B
Text
--> Run stylua to check for formatting errors
|
|
|
|
local process = require("@lune/process")
|
|
|
|
local CommandBuilder = require("./lib/exec")
|
|
|
|
process.exit(CommandBuilder.new("stylua"):withArg("."):withArgs(process.args):withStdioStrategy("forward"):exec().code)
|