UNPKG

hookem

Version:

`hookem` turns simple simple CLI commands into git hooks. It's similar to Husky version 4, but even more minimal.

12 lines (7 loc) 211 B
import { uninstall } from './lib.js'; export const command = '$0'; export const describe = 'Uninstall hooks'; export async function handler() { await uninstall(); console.log("Hook'em hooks removed"); }