diff --git a/.husky/install.mjs b/.husky/install.mjs new file mode 100755 index 0000000..2fca546 --- /dev/null +++ b/.husky/install.mjs @@ -0,0 +1,9 @@ +#!/usr/bin/env node + +if (process.env.NODE_ENV === 'production' || process.env.CI === 'true') { + process.exit(0) +} + +const husky = (await import('husky')).default + +console.log(husky()) \ No newline at end of file