Allow ! in url()s (#650)

Closes #646
This commit is contained in:
Natalie Weizenbaum 2019-04-18 17:37:20 -07:00 committed by GitHub
parent 413c949446
commit 37f0740307
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,6 @@
## 1.18.1
## 1.19.0
* Allow `!` in `url()`s without quotes.
### Dart API

View File

@ -2621,7 +2621,8 @@ relase. For details, see http://bit.ly/moz-document.
var next = scanner.peekChar();
if (next == null) {
break;
} else if (next == $percent ||
} else if (next == $exclamation ||
next == $percent ||
next == $ampersand ||
(next >= $asterisk && next <= $tilde) ||
next >= 0x0080) {

View File

@ -1,5 +1,5 @@
name: sass
version: 1.18.1-dev
version: 1.19.0
description: A Sass implementation in Dart.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/sass/dart-sass