mirror of https://github.com/folke/lazy.nvim.git
revert: fix(loader): add auto loaded module to package.loaded early to prevent require loops
This reverts commit 18d1c1b47e
.
This commit is contained in:
parent
8bef0742a2
commit
a692bf8688
|
@ -552,16 +552,15 @@ function M.loader(modname)
|
||||||
end
|
end
|
||||||
|
|
||||||
if ret then
|
if ret then
|
||||||
local mod = package.loaded[modname]
|
|
||||||
if type(mod) ~= "table" then
|
|
||||||
mod = loadfile(ret.modpath, nil, nil, ret.stat)()
|
|
||||||
end
|
|
||||||
package.loaded[modname] = mod
|
|
||||||
M.auto_load(modname, ret.modpath)
|
M.auto_load(modname, ret.modpath)
|
||||||
-- selene: allow(incorrect_standard_library_use)
|
local mod = package.loaded[modname]
|
||||||
return function()
|
if type(mod) == "table" then
|
||||||
return mod
|
return function()
|
||||||
|
return mod
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
-- selene: allow(incorrect_standard_library_use)
|
||||||
|
return loadfile(ret.modpath, nil, nil, ret.stat)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue