Commit graph

11 commits

Author SHA1 Message Date
Claude
c01c6d0ba1 Change wantedScripts to ordered list format
This ensures scripts execute in the order they appear in the config file,
resolving the TODO in the README. The config format has been changed from
a table with script names as keys to an ordered list of script entries.

Changes:
- ctx.lua: Use ipairs() instead of pairs() to iterate in order
- config.lua: Update validation to handle new list structure
- conf.lua: Update example config to use new format
- README.md: Remove TODO and clarify execution order

New config format:
wantedScripts = {
    {name = 'script1', config = {...}},
    {name = 'script2', config = {...}}
}
2025-11-23 17:16:23 -03:00
2c1f155328 update README 2024-02-16 17:56:06 -03:00
84ff7bd1b6 update docs 2024-02-16 02:13:37 -03:00
4848d28014 README: update wording 2022-12-07 02:03:23 -03:00
219f606db7 README: update wording 2022-12-07 02:02:43 -03:00
8d2f3330af add install instructions 2022-12-07 02:00:48 -03:00
374871578d add Makefile 2022-12-06 18:25:26 -03:00
d16e31c675 add config file loading 2022-12-06 18:24:25 -03:00
5d21c975ea add test suite 2022-12-06 15:53:20 -03:00
1bd95f289d add README 2022-12-03 16:08:24 -03:00
3f3714aa97 Initial commit 2022-12-03 19:06:50 +00:00