Add coverage for pnpm install command, fixes #32

This commit is contained in:
Sander Declerck 2025-09-09 08:41:26 +02:00
parent 8f6742504f
commit fd89ef3965
No known key found for this signature in database

View file

@ -13,6 +13,7 @@ export function createPnpmPackageManager() {
matchesCommand(args, "update") || matchesCommand(args, "update") ||
matchesCommand(args, "upgrade") || matchesCommand(args, "upgrade") ||
matchesCommand(args, "up") || matchesCommand(args, "up") ||
matchesCommand(args, "install") ||
// dlx does not always come in the first position // dlx does not always come in the first position
// eg: pnpm --package=yo --package=generator-webapp dlx yo webapp // eg: pnpm --package=yo --package=generator-webapp dlx yo webapp
// documentation: https://pnpm.io/cli/dlx#--package-name // documentation: https://pnpm.io/cli/dlx#--package-name