aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2025-03-14 23:45:49 +0000
committers-ol <s+removethis@s-ol.nu>2025-03-15 14:14:04 +0000
commit8526e533c9f8d16495c248f2fd9c0b224b267d36 (patch)
tree1862a442fef10866ef641ee465c84cf37bdcee1d /docs
parentimplement template strings (diff)
downloadalive-8526e533c9f8d16495c248f2fd9c0b224b267d36.tar.gz
alive-8526e533c9f8d16495c248f2fd9c0b224b267d36.zip
lib: add link-time module
Diffstat (limited to 'docs')
-rw-r--r--docs/gen/shim.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gen/shim.moon b/docs/gen/shim.moon
index 46da0ac..e8a4f08 100644
--- a/docs/gen/shim.moon
+++ b/docs/gen/shim.moon
@@ -4,7 +4,7 @@ export require
require = do
old_require = require
- blacklist = {k, true for k in *{'losc', 'socket', 'system', 'luartmidi'}}
+ blacklist = {k, true for k in *{'losc', 'socket', 'system', 'luartmidi', 'abletonlink'}}
(mod, ...) ->
return {} if blacklist[mod]
old_require mod, ...