0

husky用于设置 git 挂钩,prettier但每当我尝试提交或推送时都会遇到此错误:

> husky - Can't find npm in PATH. Skipping precommit script in package.json

我正在使用yarn v0.24.5(根据 husky 的文档是支持的)并已卸载npm. 有什么解决方法吗?

4

1 回答 1

1

Husky 使用 npm 在您的 packages.json 中运行脚本定义

见这里:https ://github.com/typicode/husky/blob/992e4cb22b6ae0626dc8c12aa0d2fbe5c653bf7d/HOOKS.md

Husky 支持所有 git 钩子 ( https://git-scm.com/docs/githooks )。只需将相应的 npm 脚本添加到您的 package.json 中。

于 2017-06-20T13:01:41.980 回答