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

Releases: SquidDev-CC/Howl

0.1.3 - Bug fixes and require

03 Feb 21:12
Compare
Choose a tag to compare
  • 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

0.1.2 - Bug fixes

15 Sep 17:02
Compare
Choose a tag to compare

Mostly, dependencies can also require build artefacts.

0.1.1 - Bug fixes

31 May 20:55
Compare
Choose a tag to compare

Many bug fixes (mostly in minification) and better interop support.

0.1

12 Jan 19:09
Compare
Choose a tag to compare
0.1
  • Fix numerous bugs
  • Traceback and line mapping in combined files
  • Source verification on combination
  • Finalizer on errors
  • Busted support

0.1 Pre-release 5

20 Dec 19:29
Compare
Choose a tag to compare
0.1 Pre-release 5 Pre-release
Pre-release
  • Compilr support
  • Generate 'bootstrap' scripts
  • Runs in normal lua

0.1 Pre-release 4

12 Dec 18:06
Compare
Choose a tag to compare
0.1 Pre-release 4 Pre-release
Pre-release

Implement file based tasks (#3) On pastebin

0.1 Pre-release 3

11 Dec 18:00
Compare
Choose a tag to compare
0.1 Pre-release 3 Pre-release
Pre-release

Minification has been implemented

0.1 Pre-release 2

08 Dec 21:14
Compare
Choose a tag to compare
0.1 Pre-release 2 Pre-release
Pre-release
  • Implemented a new argument parser
  • Documentation is compiled with LDoc

0.1 Pre-release 1

07 Dec 19:50
Compare
Choose a tag to compare
0.1 Pre-release 1 Pre-release
Pre-release
  • Task dependencies
  • File dependencies
    • Combine files into one file