refactor: switch commonjs files to esm
[benchmarks-js.git] / prepare.mjs
1 import { env } from 'node:process'
2 // eslint-disable-next-line n/no-unpublished-import
3 import { install } from 'husky'
4
5 const isCIEnvironment = env.CI != null
6 if (isCIEnvironment === false) {
7 install()
8 }