Skip to content

Commit 18d1c1b

Browse files
committed
fix(loader): add auto loaded module to package.loaded early to prevent require loops
1 parent 9a374a0 commit 18d1c1b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lua/lazy/core/loader.lua

+7-6
Original file line numberDiff line numberDiff line change
@@ -552,15 +552,16 @@ function M.loader(modname)
552552
end
553553

554554
if ret then
555-
M.auto_load(modname, ret.modpath)
556555
local mod = package.loaded[modname]
557-
if type(mod) == "table" then
558-
return function()
559-
return mod
560-
end
556+
if type(mod) ~= "table" then
557+
mod = loadfile(ret.modpath, nil, nil, ret.stat)()
561558
end
559+
package.loaded[modname] = mod
560+
M.auto_load(modname, ret.modpath)
562561
-- selene: allow(incorrect_standard_library_use)
563-
return loadfile(ret.modpath, nil, nil, ret.stat)
562+
return function()
563+
return mod
564+
end
564565
end
565566
end
566567

0 commit comments

Comments
 (0)