Skip to content

Commit 32f8a1e

Browse files
authored
Added more built-ins to the unrequire blacklist.
Also removed term following @payonel's suggestion.
1 parent 73e0d3a commit 32f8a1e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

unrequire.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ 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
}
2226
local function errprint(msg)
2327
io.stderr:write(msg .. "\n")

0 commit comments

Comments
 (0)