Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

0.1.3 - Bug fixes and require

Latest
Compare
Choose a tag to compare
@SquidDev SquidDev released this 03 Feb 21:12
· 69 commits to master since this release
  • Fix issues with tracebacks overflowing
  • Add a RequireAs task: This allows using require instead of the standard dependency model.
local files = Files()
  :Add "wild:*.lua"     -- Use files, wildcards or patterns
  :Remove "test"       -- Exclude files, some such as .git are removed by default
  :Startup "main.lua" -- Defaults to startup
Tasks:RequireAs(files, "build", "build/build.lua")
  :Link() -- Link to the files instead, similar to the bootstrap task