UNPKG

hookem

Version:

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

14 lines (9 loc) 248 B
import { install } from './lib.js'; export const command = '$0'; export const describe = 'Install hooks'; export async function handler() { const installed = await install(); if (installed) { console.log("Hook'em hooks created"); } }