-
Add support for importing an
_index.scssor_index.sassfile when importing a directory. -
Add a
--load-pathcommand-line option (alias-I) for passing additional paths to search for Sass files to import. -
Add a
--quietcommand-line option (alias-q) for silencing warnings. -
Add an
--indentedcommand-line option for using the indented syntax with a stylesheet from standard input. -
Don't merge the media queries
not typeand(feature). We had previously been generatingnot type and (feature), but that's not actually the intersection of the two queries. -
Don't crash on
$x % 0. -
The standalone executable distributed on GitHub is now named
sassrather thandart-sass. Thedart-sassexecutable will remain, with a deprecation message, until 1.0.0 is released.
Dart API
-
Add a
Loggerclass that allows users to control how messages are printed by stylesheets. -
Add a
loggerparameter tocompile(),compileAsync(),compileString(), andcompileStringAsync().
Node JS API
- Import URLs passed to importers are no longer normalized. For example, if a stylesheet contains
@import "./foo.scss", importers will now receive"./foo.scss"rather than"foo.scss".