Generate bower file automatically?

946 Views Asked by At

In current project I have pretty big bower file. Many dependencies are out of dated and have hardcoded version like ~1.2. I have replaced it with "latest" and run bower install/update and everything went ok.

The problem is that I don't want to have such settings like "latest" on production server. What is the easiest way to grab current versions of bower components and put it to the bower file? aka generate bower file from existing dependencies.

2

There are 2 best solutions below

0
On BEST ANSWER

Using bower init, you'll be able to regenerate from scratch your bower.json file with all the current dependencies

1
On

With bower install --save jquery#<version_number> you can install specific versions of bower components, e.g.

bower install --save jquery#1.10.2

the --save automatically adds the dependency to bower.json. Normally there is no need to edit bower.json manually.