Reputation: 35
When I download a git project and I run it shows some files are in bower_components folder. I cannot the find the bower_components folder in my project but there is a bower.json files.Can I convert this bower.json to bower_components folder.
Upvotes: 1
Views: 8400
Reputation: 475
run "bower install" in the folder where bower.json in. Because bower will search bower.json in current folder and install all in the bower.json.
Upvotes: 2
Reputation: 662
Cd to Project directory and then do bower install. This command will create the bower_components folder in the project directory and add all the dependencies to the bower_components folder.
Upvotes: 1