aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-core/managers/npm/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-core/managers/npm/init.lua')
-rw-r--r--lua/mason-core/managers/npm/init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/mason-core/managers/npm/init.lua b/lua/mason-core/managers/npm/init.lua
index 828afd12..b3aa0f0b 100644
--- a/lua/mason-core/managers/npm/init.lua
+++ b/lua/mason-core/managers/npm/init.lua
@@ -36,7 +36,7 @@ local function with_receipt(packages)
end
---@async
----@param packages { [number]: string, bin: string[] | nil } @The npm packages to install. The first item in this list will be the recipient of the requested version, if set.
+---@param packages { [number]: string, bin: string[] | nil }: The npm packages to install. The first item in this list will be the recipient of the requested version, if set.
function M.packages(packages)
return function()
return M.install(packages).with_receipt()
@@ -44,7 +44,7 @@ function M.packages(packages)
end
---@async
----@param packages { [number]: string, bin: string[] | nil } @The npm packages to install. The first item in this list will be the recipient of the requested version, if set.
+---@param packages { [number]: string, bin: string[] | nil }: The npm packages to install. The first item in this list will be the recipient of the requested version, if set.
function M.install(packages)
local ctx = installer.context()
local pkgs = list_copy(packages)
@@ -77,14 +77,14 @@ function M.install(packages)
end
---@async
----@param exec_args string[] @The arguments to pass to npm exec.
+---@param exec_args string[]: The arguments to pass to npm exec.
function M.exec(exec_args)
local ctx = installer.context()
ctx.spawn.npm { "exec", "--yes", "--", exec_args }
end
---@async
----@param script string @The npm script to run.
+---@param script string: The npm script to run.
function M.run(script)
local ctx = installer.context()
ctx.spawn.npm { "run", script }