mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
- Fixes issue where only the first package was scanned; now all packages in install command are parsed and processed. - Correctly separates flags (e.g., --save-dev) from package names to avoid treating them as packages. - Applies same fixes to both npm and pnpm flows. - Updated wrapper to scan all packages before installing, maintaining original CLI behavior.
22 lines
369 B
Go
22 lines
369 B
Go
package utils
|
|
|
|
func IsInstallCommand(pkgManager, cmd string) bool {
|
|
validActions := map[string]map[string]bool{
|
|
"npm": {
|
|
"install": true,
|
|
"i": true,
|
|
"add": true,
|
|
},
|
|
"pnpm": {
|
|
"add": true,
|
|
"install": true,
|
|
"i": true,
|
|
},
|
|
}
|
|
|
|
if actions, exists := validActions[pkgManager]; exists {
|
|
return actions[cmd]
|
|
}
|
|
return false
|
|
}
|