File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
- ## 1.23.8
1
+ ## 1.24.0
2
2
3
3
* ** Potentially breaking bug fix:** Members loaded through a nested ` @import `
4
4
are no longer ever accessible outside that nested context.
7
7
the same name. The latter name now takes precedence over the former, as per
8
8
the specification.
9
9
10
+ ### Dart API
11
+
12
+ * ` SassFormatException ` now implements ` SourceSpanFormatException ` (and thus
13
+ ` FormatException ` ).
14
+
10
15
## 1.23.7
11
16
12
17
* No user-visible changes.
Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ class SassRuntimeException extends SassException {
86
86
}
87
87
88
88
/// An exception thrown when Sass parsing has failed.
89
- class SassFormatException extends SassException {
89
+ class SassFormatException extends SassException
90
+ implements SourceSpanFormatException {
90
91
String get source => span.file.getText (0 );
91
92
92
93
int get offset => span.start.offset;
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.23.8 -dev
2
+ version : 1.24.0 -dev
3
3
description : A Sass implementation in Dart.
4
4
author : Sass Team
5
5
homepage : https://github.com/sass/dart-sass
You can’t perform that action at this time.
0 commit comments