mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-26 20:24:42 +01:00
Expose the SassException class publicly (#446)
This commit is contained in:
parent
d1bb4a0d6d
commit
874ee0b076
@ -1,3 +1,10 @@
|
||||
## 1.12.0
|
||||
|
||||
### Dart API
|
||||
|
||||
* Add a `SassException` type that provides information about Sass compilation
|
||||
failures.
|
||||
|
||||
## 1.11.0
|
||||
|
||||
* Add support for importing plain CSS files. They can only be imported *without*
|
||||
|
@ -19,6 +19,7 @@ import 'src/syntax.dart';
|
||||
import 'src/visitor/serialize.dart';
|
||||
|
||||
export 'src/callable.dart' show Callable, AsyncCallable;
|
||||
export 'src/exception.dart' show SassException;
|
||||
export 'src/importer.dart';
|
||||
export 'src/logger.dart';
|
||||
export 'src/syntax.dart';
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: sass
|
||||
version: 1.11.0
|
||||
version: 1.12.0-dev
|
||||
description: A Sass implementation in Dart.
|
||||
author: Dart Team <misc@dartlang.org>
|
||||
homepage: https://github.com/sass/dart-sass
|
||||
|
Loading…
Reference in New Issue
Block a user