Skip to content

Commit 8e24184

Browse files
npm: add install task
yarn install, npm install and so on.
1 parent 3cde0d8 commit 8e24184

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lua/overseer/template/npm.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,15 @@ return {
285285
end
286286
end
287287

288+
table.insert(ret, {
289+
name = bin .. " install",
290+
builder = function()
291+
return {
292+
cmd = { bin, "install" },
293+
cwd = cwd,
294+
}
295+
end,
296+
})
288297
return ret
289298
end,
290299
}

0 commit comments

Comments
 (0)