commit-vibes
Version:
A CLI tool to add vibes to your Git commit messages
106 lines (102 loc) โข 2.31 kB
JavaScript
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",
},
];