Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.03 KB

2017-11-08-02.md

File metadata and controls

28 lines (20 loc) · 1.03 KB


npmからインストールできるsassモジュールについて。

npm install sassでインストールされるモジュールがいつの間にかdart-sassになっていた。

dart-sassは名前からもわかるようにDartで書かれており、JavaScriptにコンパイルされたコードがモジュールとしてインストールされる。

実行ファイルもインストールされるので、コマンドラインからsassコマンドとして使用できる。

$ ./node_modules/.bin/sass --help
Compile Sass to CSS.

Usage: dart-sass <input>

    --[no-]stdin    Read the stylesheet from stdin.
-s, --style         Output style.
                    [expanded (default)]

-c, --[no-]color    Whether to emit terminal colors.
    --[no-]trace    Print full Dart stack traces for exceptions.
-h, --help          Print this usage information.
    --version       Print the version of Dart Sass.