How to create custom husky hook?
I would like to do something like this:
// package.json
...
husky: {
"pre-commit": "node customHook.js"
},
...
How to get access to the commit params from the customHook.js file?
P.S. I found almost the same question, but unfortunately it doesn't work for me.