10
8

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をインストール & 基本的な Sass コマンド

Posted at

#1.インストール
1.rubyがインストールされている事の確認
ruby -v
結果:Kobito.HKF2NC.png
確認OK

2.sassのインストール
sudo gem install sass
結果
Kobito.V682Iv.png

3.インストールされた事の確認
sass -v
結果
Kobito.VvFaW8.png

4.最新版へのアップデート

  • gem update

sudo gem update --system

結果
Kobito.LB9dKy.png

  • Sass update
    sudo gem update sass

結果
Kobito.okxxRm.png

#2 Sassの基本的なコマンド
1.コンパイル
sass input.scss:output.css
(inout.scssファイルをコンパイルしてoutput.cssファイルを作成)
*コンパイル時にcssのスタイルを指定するのは--styleオプション
sass input.scss:output.css --style (expanded | compact | compressed | nested(default))

2.watchオプション
フォルダ単位で更新を監視して自動的にscss → css へ
sass -- watch inputフォルダ(:outputフォルダ)

3.--cache-lacation オプションでキャッシュフォルダの場所を指定する
sass --watch inputフォルダ(:outputフォルダ) --cache-lacation キャッシュフォルダ

#3.おまけ シェルスクリプト化

sass_compile.command
#!/bin/sh

cd $(dirname $0)
sass --watch sass:css --style expanded --cache-location cache

chmod +x sass_compile.command

10
8
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
10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?