mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
feat(sourcemap_generator): support init.lua files (#1)
This commit is contained in:
parent
5e5b3efc78
commit
e68f5d0928
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,9 @@ if fs.isFile(package_directory .. "/default.project.json") then
|
|||
elseif fs.isFile(package_directory .. "/init.luau") then
|
||||
local sourcemap = { filePaths = { "init.luau" } }
|
||||
stdio.write(serde.encode("json", sourcemap, false))
|
||||
elseif fs.isFile(package_directory .. "/init.lua" then
|
||||
local sourcemap = { filePaths = { "init.lua" } }
|
||||
stdio.write(serde.encode("json", sourcemap, false))
|
||||
else
|
||||
-- use stderr to avoid this being parsed as the output of the sourcemap command
|
||||
stdio.ewrite("no default.project.json found in " .. package_directory)
|
||||
|
|
Loading…
Reference in a new issue