b1500787 |
1 | import { env } from 'node:process' |
b1500787 JB |
2 | |
3 | const isCIEnvironment = env.CI != null |
4 | if (isCIEnvironment === false) { |
3b8a84f6 JB |
5 | import('husky') |
6 | .then(husky => console.warn(husky.default())) |
7 | .catch(console.error) |
b1500787 |
8 | } |