Skip to content

Commit 8dddcb7

Browse files
authoredApr 25, 2023
Split SilentComment nodes on empty lines in SCSS (#1945)
Closes #1941
1 parent 3091de5 commit 8dddcb7

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed
 

‎lib/src/parse/scss.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class ScssParser extends StylesheetParser {
151151
do {
152152
while (!scanner.isDone && !isNewline(scanner.readChar())) {}
153153
if (scanner.isDone) break;
154-
whitespaceWithoutComments();
154+
spaces();
155155
} while (scanner.scan("//"));
156156

157157
if (plainCss) {

‎pkg/sass_api/CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 6.3.1
1+
## 7.0.0
22

3-
* No user-visible changes.
3+
* Silent comments in SCSS that are separated by blank lines are now parsed as
4+
separate `SilentComment` nodes rather than a single conjoined node.
45

56
## 6.3.0
67

‎pkg/sass_api/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 6.3.1-dev
5+
version: 7.0.0
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: ">=2.17.0 <3.0.0"
1111

1212
dependencies:
13-
sass: 1.62.1-dev
13+
sass: 1.62.1
1414

1515
dev_dependencies:
1616
dartdoc: ^5.0.0

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.62.1-dev
2+
version: 1.62.1
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)
Please sign in to comment.