Skip to content

Commit 042aaa4

Browse files
committed
feat!: renamed Plugin.run => Plugin.build
1 parent ec4199b commit 042aaa4

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
## ✅ TODO
2525

2626
- [ ] health checks: check merge conflicts async
27+
- [ ] unsupported props or props from other managers
28+
- [x] rename `run` to `build`
2729
- [ ] allow setting up plugins through config
2830
- [x] task timeout
2931
- [ ] log file
30-
- [ ] deal with resourcing init.lua. Check a global?
32+
- [ ] deal with re-sourcing init.lua. Check a global?
3133
- [x] incorrect when switching TN from opt to start
3234
- [ ] git tests
3335
- [x] max concurrency

lua/lazy/core/plugin.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local M = {}
88
---@class LazyPluginHooks
99
---@field init? fun(LazyPlugin) Will always be run
1010
---@field config? fun(LazyPlugin) Will be executed when loading the plugin
11-
---@field run? string|fun()
11+
---@field build? string|fun(LazyPlugin)
1212

1313
---@class LazyPluginState
1414
---@field loaded? {[string]:string, time:number}

lua/lazy/manage/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function M.install(opts)
5959
"git.checkout",
6060
"plugin.docs",
6161
"wait",
62-
"plugin.run",
62+
"plugin.build",
6363
},
6464
plugins = function(plugin)
6565
return plugin.uri and not plugin._.installed
@@ -78,7 +78,7 @@ function M.update(opts)
7878
{ "git.checkout", lockfile = opts.lockfile },
7979
"plugin.docs",
8080
"wait",
81-
"plugin.run",
81+
"plugin.build",
8282
{ "git.log", updated = true },
8383
},
8484
plugins = function(plugin)

lua/lazy/manage/task/plugin.lua

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ local Loader = require("lazy.core.loader")
44
---@type table<string, LazyTaskDef>
55
local M = {}
66

7-
M.run = {
7+
M.build = {
88
skip = function(plugin)
9-
return not (plugin._.dirty and (plugin.opt == false or plugin.run))
9+
return not (plugin._.dirty and (plugin.opt == false or plugin.build))
1010
end,
1111
run = function(self)
1212
Loader.load(self.plugin, { task = "run" }, { load_start = true })
1313

14-
local run = self.plugin.run
15-
if run then
16-
if type(run) == "string" and run:sub(1, 1) == ":" then
17-
local cmd = vim.api.nvim_parse_cmd(run:sub(2), {})
14+
local build = self.plugin.build
15+
if build then
16+
if type(build) == "string" and build:sub(1, 1) == ":" then
17+
local cmd = vim.api.nvim_parse_cmd(build:sub(2), {})
1818
self.output = vim.api.nvim_cmd(cmd, { output = true })
19-
elseif type(run) == "function" then
20-
run()
19+
elseif type(build) == "function" then
20+
build()
2121
else
22-
local args = vim.split(run, "%s+")
22+
local args = vim.split(build, "%s+")
2323
return self:spawn(table.remove(args, 1), {
2424
args = args,
2525
cwd = self.plugin.dir,

0 commit comments

Comments
 (0)