1
2

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.

Atomでsassファイルをwatchしてコンパイルする

Posted at

準備

  • node.jsを入れる
  • ターミナルからnode-sass を入れる
    • npm -g install node-sass だと、installを繰り返してしまい、インストールが終わらない
    • 下記コマンドでインストールできました。
    • npm -g --unsafe-perm install node-sass
    • node-sass -v でバージョン確認できれば大丈夫。

Atom

  • Preference -> Install で、sass-autocompiled をインストール
  • コンパイルしたいscssファイルを開き、ctrl + shift + c で、開いたファイルを監視してくれる。

オプション

指定したフォルダにコンパイル

scssファイルの行頭に// compileCompressed: で、コンパイル先を指定する。

scss
// compileCompressed: path/to/css/hoge.css

import先のファイルもwatchする

import先のファイル行頭に//main: で、import元の親ファイルを指定する。

scss
//main:hoge.scss
1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?