postcss 8.4.30 → 8.4.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/processor.js +1 -1
- package/lib/tokenize.js +1 -1
- package/package.json +1 -1
package/lib/processor.js
CHANGED
package/lib/tokenize.js
CHANGED
@@ -22,7 +22,7 @@ const AT = '@'.charCodeAt(0)
|
|
22
22
|
|
23
23
|
const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g
|
24
24
|
const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g
|
25
|
-
const RE_BAD_BRACKET = /.[\n"'(/\\]/
|
25
|
+
const RE_BAD_BRACKET = /.[\r\n"'(/\\]/
|
26
26
|
const RE_HEX_ESCAPE = /[\da-f]/i
|
27
27
|
|
28
28
|
module.exports = function tokenizer(input, options = {}) {
|