Skip to content

Commit 908df30

Browse files
committed
Added more built-ins to the unrequire blacklist.
Also removed term following @payonel's suggestion. (also this commit is a amended commit because I messed up last time)
1 parent 73e0d3a commit 908df30

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

unrequire.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ local blacklist = {
1414
["component"] = true,
1515
["_G"] = true,
1616
["term"] = true,
17-
["keyboard"] = true,
1817
["table"] = true,
1918
["string"] = true,
2019
["math"] = true,
20+
["debug"] = true,
21+
["os"] = true,
22+
["coroutine"] = true,
23+
["utf8"] = true,
24+
["bit32"] = true,
2125
}
26+
2227
local function errprint(msg)
2328
io.stderr:write(msg .. "\n")
2429
end

0 commit comments

Comments
 (0)