dart-sass
dart-sass copied to clipboard
The reference implementation of Sass, written in Dart.
See https://github.com/sass/sass/issues/2904 - [x] Phase 1 (https://github.com/sass/dart-sass/pull/1175) - [x] Phase 2 (https://github.com/sass/dart-sass/pull/1818) - [ ] Phase 3
Release: Dart Sass v1.26.10 Platform: Windows7 32bit When output style is set to be `compressed`, the compiler should do whatever it can to reduce the size of the output. However,...
In node-sass, you can create a sass value without the use of `new`. For example: ```js let sass = require("node-sass"); let assert = require("assert"); let sassString = sass.types.String("my-string"); assert(sassString instanceof...
When compiling sass files with make or ninja based buildsystems, it would be nice if dart-sass would be invoked only if a scss file (or one if its dependencies) has...
Since adopting the new SASS module system, I have quite often seen an error similar to: ``` Error: This module was already loaded, so it can't be configured using "with"....
As in #148, it would be very useful to be able to load custom importers and functions from the command line, without forcing users to write their own executable entrypoints...
Hello In the current Project, we have some issues importing css files from the node_modules folder. The docs are stating that `sass` automatically looks for the `.css` file in a...
Since this is supposed to replace Ruby Sass, I thought I should ask here. Writing a package manager, I would like to see plugin support like Less, where you can...
One of the most attractive things about `dart-sass` is that the `sass` npm package is pure js instead of using native code. However, the library includes a dependency on `chokidar`...
I'm using Dart Sass 1.22.12. I'm trying to compile the same sass to multiple directories while watching them. I have the following in my script: `sass --watch sass:sv/css sass:hv/css` But...