Search code examples
node.jsgitgithookshusky

Husky add command is deprecated?


I'm trying to follow this tutorial on how to add a commit msg hook with Husky.

And this is the command given in the tutorial:

npx husky add .husky/commit-msg 'npx commitlint --edit $1'

However when ran it errors with this message:

add command is deprecated

What should we be using instead of add?


Solution

  • Just create a file in .husky/commit-msg, and add this to the file:

    npx commitlint --edit $1