UNPKG

commit-vibes

Version:

A CLI tool to add vibes to your Git commit messages

106 lines (102 loc) โ€ข 2.31 kB
export const VIBES = [ { value: "๐Ÿ˜ค Frustrated", label: "๐Ÿ˜ค Frustrated", hint: "When debugging takes forever", }, { value: "๐ŸŽ‰ Victory", label: "๐ŸŽ‰ Victory", hint: "When something finally works", }, { value: "๐Ÿค” Questionable Commit", label: "๐Ÿค” Questionable Commit", hint: "When you're not sure if it'll work", }, { value: "๐Ÿ”ฅ Big Energy", label: "๐Ÿ”ฅ Big Energy", hint: "Refactoring everything", }, { value: "๐Ÿ’€ It Works... Somehow", label: "๐Ÿ’€ It Works... Somehow", hint: "No idea why it runs", }, { value: "๐Ÿš€ Shipped It", label: "๐Ÿš€ Shipped It", hint: "Deployed to production", }, { value: "๐Ÿ˜… Desperate Fix", label: "๐Ÿ˜… Desperate Fix", hint: "A last-minute hack", }, { value: "๐Ÿ›  Fixing Tech Debt", label: "๐Ÿ›  Fixing Tech Debt", hint: "Cleaning up old code", }, { value: "๐Ÿคก Hacky Fix", label: "๐Ÿคก Hacky Fix", hint: "Code that works but shouldn't", }, { value: "โณ Waiting for CI", label: "โณ Waiting for CI", hint: "When CI/CD takes forever", }, { value: "๐Ÿซ  Melting Brain", label: "๐Ÿซ  Melting Brain", hint: "When your brain is fried", }, { value: "๐Ÿ”„ Reverted Again", label: "๐Ÿ”„ Reverted Again", hint: "Rolling back... again", }, { value: "โš ๏ธ Commit and Pray", label: "โš ๏ธ Commit and Pray", hint: "Hoping nothing breaks", }, { value: "๐Ÿ› Bug Fix... Maybe", label: "๐Ÿ› Bug Fix... Maybe", hint: "Fixing one bug, introducing another", }, { value: "๐Ÿคฏ Mind-Blown", label: "๐Ÿคฏ Mind-Blown", hint: "When a new approach actually works", }, { value: "๐ŸŽถ Vibing", label: "๐ŸŽถ Vibing", hint: "Feeling good while coding", }, { value: "๐Ÿ•ต๏ธ Debugging Detective", label: "๐Ÿ•ต๏ธ Debugging Detective", hint: "Deep in the logs", }, { value: "๐ŸŒ™ Late Night Commit", label: "๐ŸŒ™ Late Night Commit", hint: "Pushing code at 2 AM", }, { value: "๐Ÿ™ƒ What Am I Doing?", label: "๐Ÿ™ƒ What Am I Doing?", hint: "Existential coding crisis", }, { value: "๐Ÿงน Cleaning Up", label: "๐Ÿงน Cleaning Up", hint: "Removing unused code", }, ];