牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

Yeoman で作った AngularJS + Titter Bootstrap のプロジェクトで Bootstrap がまだ Ver.2 だったので 3 にする場合のメモ

(yeoman1.0.4, angularjs1.0.7)

Bower で bootstrap をインストール

bootstrap でなくて bootstrap-sass の方

$ bower install --save bootstrap-sass

とすると必要なライブラリをインストールしてくれて
下記のように質問してくるので新しい方を選択

Unable to find a suitable version for bootstrap-sass, please choose one:
    1) bootstrap-sass#~2.3.1 which resolved to 2.3.2 and has guestbook as dependants
    2) bootstrap-sass#~3.0.1 which resolved to 3.0.1

Prefix the choice with ! to persist it to bower.json

[?] Answer: 2
bower bootstrap-sass#~3.0.1    install bootstrap-sass#3.0.1

一応確認

bower.json

-    "bootstrap-sass": "~2.3.1",
+    "bootstrap-sass": "~3.0.1",