This commit is contained in:
Hans Ott 2025-11-01 13:44:48 +01:00
parent 484cbcd960
commit 86a2b8c2a7

View file

@ -7,7 +7,7 @@ import { parsePackagesFromArguments } from "../parsing/parsePackagesFromArgument
export function commandArgumentScanner() { export function commandArgumentScanner() {
return { return {
scan: (args) => scanDependencies(args), scan: (args) => scanDependencies(args),
shouldScan: (args) => true, // all npx commands need to be scanned, npx doesn't have dry-run shouldScan: () => true, // all npx commands need to be scanned, npx doesn't have dry-run
}; };
} }