refactor: convert commonjs files to esm
[poolifier.git] / prepare.mjs
1 import { env } from 'node:process'
2 import { install } from 'husky'
3
4 const isCIEnvironment = env.CI != null
5 if (isCIEnvironment === false) {
6 install()
7 }