Displays help text for commands in a pretty format.
Optional name of command to show help for
Array of available commands
const commands: Command[] = [{ name: 'build', description: '🏗️ Build the project'}];// Show general helpprintHelp(undefined, commands);// Show help for specific commandprintHelp('build', commands); Copy
const commands: Command[] = [{ name: 'build', description: '🏗️ Build the project'}];// Show general helpprintHelp(undefined, commands);// Show help for specific commandprintHelp('build', commands);
Displays help text for commands in a pretty format.