feat(build): build can now be a list to execute multiple build commands. Fixes #143

This commit is contained in:
Folke Lemaitre 2022-12-24 09:17:29 +01:00
parent 593d6e400b
commit 9110371120
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
3 changed files with 42 additions and 42 deletions

View file

@ -19,7 +19,7 @@ local M = {}
---@class LazyPluginHooks
---@field init? fun(LazyPlugin) Will always be run
---@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[]>
---@field event? string[]