jquery-validation missing dist folder

梦想的初衷 提交于 2019-12-03 11:59:15

I had a similar issue and was able to fix it by installing grunt globally then running npm install in the jquery-validation folder:

  1. Open node js command prompt and run npm install -g grunt
  2. In any command prompt (I used developer command prompt from VS) navigate to jquery-validation folder and run npm install

Afterwards, the jquery-validation\dist folder should show up with the jquery.validate.js file.

npm 2 generates several nested folders which causes paths on Windows to bug. If that is the issue then you should update to npm 3 where they fixed it.

npm i -g npm
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!