mirror of
https://github.com/chenasraf/vstask.git
synced 2026-05-17 17:38:04 +00:00
16 lines
433 B
Go
16 lines
433 B
Go
package runner
|
|
|
|
// put this near the top of the file or below imports
|
|
func isNpmBuiltin(cmd string) bool {
|
|
switch cmd {
|
|
case "install", "ci", "publish", "pack", "update", "outdated",
|
|
"rebuild", "version", "login", "logout", "whoami",
|
|
"init", "create", "audit", "prune", "cache", "config",
|
|
"root", "help", "search", "exec", "add", "remove",
|
|
"link", "unlink", "run", "run-script":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|