[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

fix/description-scripts (#58)

authored by

AmirHossein Sakhravi and committed by
GitHub
(Sep 25, 2025, 12:11 PM +0330) 4844ba61 b941005a

+1 -3
+1 -3
bin/completions/completion-producers.ts
··· 8 8 export const packageJsonScriptCompletion = async ( 9 9 complete: Complete 10 10 ): Promise<void> => { 11 - getPackageJsonScripts().forEach((script) => 12 - complete(script, `Run ${script} script`) 13 - ); 11 + getPackageJsonScripts().forEach((script) => complete(script, ' ')); 14 12 }; 15 13 16 14 // provides completions for package dependencies from package.json.. for commands like remove `pnpm remove <dependency>`