Skip to content

Commit be74a8a

Browse files
committed
feat(pkg): utils to get rock to url mappings
1 parent 25981e1 commit be74a8a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

lua/lazy/community/init.lua

+10-11
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@ local M = {}
33
---@type table<string, string>
44
local mapping = nil
55

6-
local function _load()
7-
if mapping then
8-
return
9-
end
10-
mapping = {}
11-
---@type {name:string, url:string, version:string}[]
12-
local gen = require("lazy.community._generated")
13-
for _, rock in ipairs(gen) do
14-
mapping[rock.name] = rock.url
6+
local function load()
7+
if not mapping then
8+
mapping = {}
9+
---@type {name:string, url:string, version:string}[]
10+
local gen = require("lazy.community._generated")
11+
for _, rock in ipairs(gen) do
12+
mapping[rock.name] = rock.url
13+
end
1514
end
15+
return mapping
1616
end
1717

1818
---@param rock string
1919
---@return string?
2020
function M.get_url(rock)
21-
_load()
22-
return mapping[rock]
21+
return load()[rock]
2322
end
2423

2524
return M

0 commit comments

Comments
 (0)