02

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.