repositories
/
benchmarks-js.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
build(deps-dev): apply updates
[benchmarks-js.git]
/
prepare.mjs
1
import { env } from 'node:process'
2
3
const isCIEnvironment = env.CI != null
4
if (isCIEnvironment === false) {
5
// eslint-disable-next-line n/no-unpublished-import
6
import('husky')
7
.then(husky => {
8
return console.warn(husky.default())
9
})
10
.catch(console.error)
11
}