mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
parent
0cbbb9128d
commit
7d89ad0c1c
@ -1,5 +1,7 @@
|
||||
## 1.0.0-beta.5.3
|
||||
|
||||
* Support hard tabs in the indented syntax.
|
||||
|
||||
* Don't deadlock on `/*` comments in the indented syntax.
|
||||
|
||||
* Don't add an extra `*/` to comments in the indented syntax that already have
|
||||
|
@ -377,7 +377,7 @@ class SassParser extends StylesheetParser {
|
||||
position: scanner.position - scanner.column,
|
||||
length: scanner.column);
|
||||
}
|
||||
} else if (_spaces == false) {
|
||||
} else if (containsSpace && _spaces == false) {
|
||||
scanner.error("Expected tabs, was spaces.",
|
||||
position: scanner.position - scanner.column, length: scanner.column);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user