sassのインストール
- Sassはsourcemap出力は正式対応されているので、下記コマンドでインストール。
gem install sass
Compassのインストール
- Compassは現時点ではsourcemapの出力に正式対応していない(2014年4月29日時点)のでalpha版をインストールする
gem install compass --pre
config.rbに以下を追加することでsourcemapが出力される
config.rb
sourcemap = true
※ 以前はcompass watchではsourcemapが出力されなかったが、現在は出力される
Gruntのインストール(オプション)
compass -watchでsourcemapが出力されなかったが、Gruntでは対応している?!- gruntではsourcemapオプションで指定することができる
npm install grunt-cli -g
npm install grunt-contrib-compass
Gruntfile.js
grunt.initConfig({
compass: {
watch: true,
sourcemap: true
}
});