Flow Gnarly
Flow Gnarly
I did write one test for it earlier today: [commit log](https://github.com/HighFlowey/luneweb/commit/be0488bee1d59830b4499e865ef934671aed75d6) I also made lune call `inject_globals` even when all the standard libraries are disabled, because `inject_globals` does more than...
the issue that youre having is not exactly from those 2 lines of code. the issue is that in another script (which is being required) youre either trying to get...
After looking at the existing Luau RFCs for string requires, Ive came to the conclusion that having to explicitly define "./" in require path is the correct behavior. however none...
Ive heard other community made tools are also considering to change their implementation to match the new require rfc (where including ./ in relative path is **required**) so I guess...
I've found a similar issue with generics... intersections?... ```luau local function foo(bar: number & T) assert(typeof(bar) == "number") typeof(bar) -- TypeError: Type function instance intersect is uninhabited end ``` after...