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.