web-dev-qa-db-ja.com

bowerはbower.jsonを自動的に更新します

私はbower 1.0.0を使って以下のコマンドを実行します。

mkdir testdir;cd testdir
bower init #accept defaults
bower install jquery -s  #the -s is supposed to cause update of bower.json
less bower.json

Bower.jsonでは、依存関係がリストに表示されることを期待していますが、何もありません。何が起こっている?

注:bower install jquery --saveは機能します

注:私が参照しているオプションはbower help installを通して文書化されています

**-S**, --save              Save installed packages into the project's bower.json dependencies
234
Selah

手助けから、セーブオプションは首都Sを持っています

-S, --save  Save installed packages into the project's bower.json dependencies
372
gru