chore: Update package.json description for clarity

This commit is contained in:
Mauro Balades 2024-07-06 21:17:06 +02:00
parent 1f72a1630d
commit 7cfe4aa88d
15 changed files with 184 additions and 136 deletions

View file

@ -114,5 +114,7 @@ function cleanInput(toBeCleaned: string): string {
export function commandExistsSync(commandName: string): boolean {
const cleanedCommandName = cleanInput(commandName)
return onWindows ? commandExistsWindowsSync(commandName, cleanedCommandName) : commandExistsUnixSync(commandName, cleanedCommandName);
return onWindows
? commandExistsWindowsSync(commandName, cleanedCommandName)
: commandExistsUnixSync(commandName, cleanedCommandName)
}