Adapt the structure to parse the initial pip commands

This commit is contained in:
Reinier Criel 2025-10-22 15:28:27 -07:00
parent 982da4aa77
commit 1b82aeb6b0
7 changed files with 273 additions and 22 deletions

View file

@ -0,0 +1,10 @@
/**
* Null scanner that returns no dependencies
* Used when a command is not supported for scanning
*/
export function nullScanner() {
return {
shouldScan: () => false,
scan: () => [],
};
}