When I try to install the jquery-validation bower package in VS2015, I am not getting a dist folder under bower_components/jquery-validation while my co-workers are. I'm guessing that I have something configured wrong on my box, but what can it be? FYI, I have VS2015 Update 3, .NET Core 1.0.0 - SDK Preview 2, and .NET Core 1.0.0 - VS 2015 Tooling Preview 2.
Here's an easy way for me to produce the problem on my computer (although it works for others):
- Create a new ASP.NET Core Web Application (.NET Core) project, using the Empty template
- Right click on the project and click on Manage Bower Packages
- Click browse and search for jquery-validation
- Click Install
- Look under the bower_components/jquery-validation folder and there should be a dist folder (but it is missing for me)
Another clue is that I believe that grunt is involved in the creation of the dist folder. The jquery-validation folder has a gruntfile.js file. It seems that perhaps my co-workers have grunt running automatically when they download a bower package, but I'm not sure how to configure that.