0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MACにSassをインストールしてNetBeansでコンパイルする方法

Posted at

#環境
MAC: Yosemite(10.10.3)
NetBeans: 8.0.2
#Sassのインストール方法
ターミナルを立ち上げて、下記コマンドでインストール。

sudo gem install sass

MACのパスワードを聞かれるので、入力。
インストールが完了したら、正常にインストール出来ているか確認。

sass -v

下記のようにSassのバージョンが返ってきたらOK

Sass 3.4.14 (Selective Steve)

#Compassのインストール
下記コマンドでCompassをインストールする。

sudo gem install compass

インストール後、ツラツラとターミナルに表示されるが、下記内容が含まれていればOK

Successfully installed compass-1.0.3

#NetBeans の設定
NetBeans起動後、「NetBeans」→「Preferences」→「その他」の「CSSプリプロセッサ」タブの「Sassパス」項目にSassのパスを入力する。
スクリーンショット-2015-06-13-18.33.06.jpg
この時「検索」ボタンを押すと、勝手にパスを入れてくれたので便利。

次に、プロジェクトの設定です。
プロジェクトを右クリックして「プロパティ」を選択。
「CSSプリプロセッサ」項目を表示して、「保存時にSassファイルをコンパイル」欄にチェック。
「コンパイラ・オプション」欄に「--compass」を入力する。
スクリーンショット-2015-06-13-18.36.47.jpg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?