mirror of https://github.com/folke/lazy.nvim.git
feat(build): build can now be a list to execute multiple build commands. Fixes #143
This commit is contained in:
parent
593d6e400b
commit
9110371120
|
@ -80,7 +80,7 @@ require("lazy").setup({
|
||||||
## 🔌 Plugin Spec
|
## 🔌 Plugin Spec
|
||||||
|
|
||||||
| Property | Type | Description |
|
| Property | Type | Description |
|
||||||
| ---------------- | --------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ---------------- | --------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `[1]` | `string?` | Short plugin url. Will be expanded using `config.git.url_format` |
|
| `[1]` | `string?` | Short plugin url. Will be expanded using `config.git.url_format` |
|
||||||
| **dir** | `string?` | A directory pointing to a local plugin |
|
| **dir** | `string?` | A directory pointing to a local plugin |
|
||||||
| **url** | `string?` | A custom git url where the plugin is hosted |
|
| **url** | `string?` | A custom git url where the plugin is hosted |
|
||||||
|
@ -91,7 +91,7 @@ require("lazy").setup({
|
||||||
| **dependencies** | `LazySpec[]` | A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise |
|
| **dependencies** | `LazySpec[]` | A list of plugin specs that should be loaded when the plugin loads. Dependencies are always lazy-loaded unless specified otherwise |
|
||||||
| **init** | `fun(LazyPlugin)` | `init` functions are always executed during startup |
|
| **init** | `fun(LazyPlugin)` | `init` functions are always executed during startup |
|
||||||
| **config** | `fun(LazyPlugin)` or `true` or `table` | `config` is executed when the plugin loads. You can also set to `true` or pass a `table`, that will be passed to `require("plugin").setup(opts)` |
|
| **config** | `fun(LazyPlugin)` or `true` or `table` | `config` is executed when the plugin loads. You can also set to `true` or pass a `table`, that will be passed to `require("plugin").setup(opts)` |
|
||||||
| **build** | `fun(LazyPlugin)` or `string` | `build` is executed when a plugin is installed or updated. If it's a string it will be ran as a shell command. When prefixed with `:` it is a Neovim command. |
|
| **build** | `fun(LazyPlugin)` or `string` or a list of build commands | `build` is executed when a plugin is installed or updated. If it's a string it will be ran as a shell command. When prefixed with `:` it is a Neovim command. You can also specify a list to executed multiple build commands |
|
||||||
| **branch** | `string?` | Branch of the repository |
|
| **branch** | `string?` | Branch of the repository |
|
||||||
| **tag** | `string?` | Tag of the repository |
|
| **tag** | `string?` | Tag of the repository |
|
||||||
| **commit** | `string?` | Commit of the repository |
|
| **commit** | `string?` | Commit of the repository |
|
||||||
|
|
|
@ -19,7 +19,7 @@ local M = {}
|
||||||
---@class LazyPluginHooks
|
---@class LazyPluginHooks
|
||||||
---@field init? fun(LazyPlugin) Will always be run
|
---@field init? fun(LazyPlugin) Will always be run
|
||||||
---@field config? fun(LazyPlugin)|true|table Will be executed when loading the plugin
|
---@field config? fun(LazyPlugin)|true|table Will be executed when loading the plugin
|
||||||
---@field build? string|fun(LazyPlugin)
|
---@field build? string|fun(LazyPlugin)|(string|fun(LazyPlugin))[]
|
||||||
|
|
||||||
---@class LazyPluginHandlers: table<LazyHandlerTypes, string|string[]>
|
---@class LazyPluginHandlers: table<LazyHandlerTypes, string|string[]>
|
||||||
---@field event? string[]
|
---@field event? string[]
|
||||||
|
|
|
@ -11,12 +11,11 @@ M.build = {
|
||||||
run = function(self)
|
run = function(self)
|
||||||
Loader.load(self.plugin, { task = "build" })
|
Loader.load(self.plugin, { task = "build" })
|
||||||
|
|
||||||
-- we need to source its plugin files before startup,
|
local builders = self.plugin.build
|
||||||
-- to make sure the build command has everything available
|
if builders then
|
||||||
Loader.source_runtime(self.plugin.dir, "plugin")
|
builders = type(builders) == "table" and builders or { builders }
|
||||||
|
---@cast builders (string|fun(LazyPlugin))[]
|
||||||
local build = self.plugin.build
|
for _, build in ipairs(builders) do
|
||||||
if build then
|
|
||||||
if type(build) == "string" and build:sub(1, 1) == ":" then
|
if type(build) == "string" and build:sub(1, 1) == ":" then
|
||||||
local cmd = vim.api.nvim_parse_cmd(build:sub(2), {})
|
local cmd = vim.api.nvim_parse_cmd(build:sub(2), {})
|
||||||
self.output = vim.api.nvim_cmd(cmd, { output = true })
|
self.output = vim.api.nvim_cmd(cmd, { output = true })
|
||||||
|
@ -26,12 +25,13 @@ M.build = {
|
||||||
local shell = vim.env.SHELL or vim.o.shell
|
local shell = vim.env.SHELL or vim.o.shell
|
||||||
local shell_args = shell:find("cmd.exe", 1, true) and "/c" or "-c"
|
local shell_args = shell:find("cmd.exe", 1, true) and "/c" or "-c"
|
||||||
|
|
||||||
return self:spawn(shell, {
|
self:spawn(shell, {
|
||||||
args = { shell_args, build },
|
args = { shell_args, build },
|
||||||
cwd = self.plugin.dir,
|
cwd = self.plugin.dir,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue