File tree 2 files changed +30
-15
lines changed
2 files changed +30
-15
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ local Config = require("lazy.core.config")
2
2
local Util = require (" lazy.util" )
3
3
4
4
local M = {}
5
- M .VERSION = 8
5
+ M .VERSION = 10
6
6
M .dirty = false
7
7
8
8
--- @class LazyPkg
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ M.skip = { "lua" }
12
12
--- @field package string
13
13
--- @field version string
14
14
--- @field dependencies string[]
15
+ --- @field build ? { build_type ?: string , modules ?: any[] }
15
16
16
17
--- @param plugin LazyPlugin
17
18
--- @return LazyPkgSpec ?
@@ -37,30 +38,44 @@ function M.get(plugin)
37
38
end
38
39
load ()
39
40
41
+ if not rockspec then
42
+ return
43
+ end
44
+
45
+ local has_lua = not not vim .uv .fs_stat (plugin .dir .. " /lua" )
46
+
40
47
--- @param dep string
41
48
local rocks = vim .tbl_filter (function (dep )
42
49
local name = dep :gsub (" %s.*" , " " )
43
50
return not vim .tbl_contains (M .skip , name )
44
- end , rockspec and rockspec .dependencies or {})
51
+ end , rockspec .dependencies or {})
45
52
46
- local use = # rocks > 0
47
- use = true
53
+ local use = not has_lua
54
+ or # rocks > 0
55
+ or (
56
+ rockspec .build
57
+ and rockspec .build .build_type
58
+ and rockspec .build .build_type ~= " none"
59
+ and not (rockspec .build .build_type == " builtin" and not rockspec .build .modules )
60
+ )
61
+
62
+ if not use then
63
+ return
64
+ end
48
65
49
66
local lazy = nil
50
- if not vim . uv . fs_stat ( plugin . dir .. " /lua " ) then
67
+ if not has_lua then
51
68
lazy = false
52
69
end
53
70
54
- return use
55
- and {
56
- file = vim .fn .fnamemodify (rockspec_file , " :t" ),
57
- spec = {
58
- plugin .name ,
59
- build = " rockspec" ,
60
- lazy = lazy ,
61
- },
62
- }
63
- or nil
71
+ return {
72
+ file = vim .fn .fnamemodify (rockspec_file , " :t" ),
73
+ spec = {
74
+ plugin .name ,
75
+ build = " rockspec" ,
76
+ lazy = lazy ,
77
+ },
78
+ } or nil
64
79
end
65
80
66
81
return M
You can’t perform that action at this time.
0 commit comments