我尝试使用Husky作为简单的git hook管理器,并在'package.json'
文件中的脚本中添加了以下行:
"prepush": "webpack --config webpack.prod.js && git add ./dist_prod/* && git commit -m \"Automatic commit - webpack build prod\""
问题在于,每次我尝试执行git push
时,它都会失败,并引发以下错误:
找不到模块'C:\ c \ Program 文件\ nodejs \ node_modules \ npm \ bin \ npm-cli.js'
我知道错误在于此路径,因为“ C:\ c \”显然是错误的,但我不知道如何解决。