Re: [ANN] lcm -- Lua Code Melder, 2026-04
"'Martin Eden' via lua-l" <[email protected]> Fri, 24 Apr 2026 09:30:31 +0200
| Newsgroups | gmane.comp.lang.lua.general |
|---|---|
| Message-ID | <[email protected]> |
On 2026-04-24 01:16, mjmouse9999 wrote:
> It also scans the dependencies by looking for require
> statements
> (This is helped by the fact that Teal always includes the brackets)
>
> [...]
>
> https://github.com/teal-language/tl/blob/main/extras/combine.tl
Scanning for deps in dynamic languages via parsing source generally
doesn't work:
function request(str)
return require(str)
end
request('debug')
Before deploy I'm actually running main code. My strain of "require"
wrapper tracks run-time dependencies in global table. Which is later
used to go and copy those files.
-- Martin
--
You received this message because you are subscribed to the Google Groups "lua-l" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion visit https://groups.google.com/d/msgid/lua-l/9f499514-3965-4d5d-adc0-a92c129de0a6%40disroot.org.