rharriso / bower-rails

Bundler-like DSL + rake tasks for Bower on Rails
MIT License
1.46k stars 128 forks source link

How can I install only 1 newly added package. #141

Closed vuhailuyen1991 closed 9 years ago

vuhailuyen1991 commented 9 years ago

How can I install only 1 newly added package without having to remove all packages and install everything over?

SergeyKishenin commented 9 years ago

What if you pass package name as and argument to a rake task https://github.com/rharriso/bower-rails#rake-tasks?

vuhailuyen1991 commented 9 years ago

@SergeyKishenin I tried: _rake bower:install --save_

But in fact they delete all my old packages and reinstall them again. What is the right command?

SergeyKishenin commented 9 years ago

Try rake bower:install['package_name']

vuhailuyen1991 commented 9 years ago

done