We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tried running the example input but it just outputs like below. Can someone tell me what I'm doing wrong?
$ doiuse --browsers "ie >= 9, > 1%, last 2 versions" style.css [css-tokenize] unfinished business [ [ 'root' ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ], [ 'string', 39 ], [ 'comment' ] ]
Using node v16.20.2
The text was updated successfully, but these errors were encountered:
Same issue for me with node v20.18.
v20.18
It looks like it's failing for a single quote inside a comment.
Example valid use case: /* Fallback style when browser doesn't support... */
/* Fallback style when browser doesn't support... */
Minimal reproducible example:
Fails:
/* comment with ' char */ .focused { color: blue; }
Works:
/* comment with 'wrapped' chars */ .focused { color: blue; }
Temp workaround: remove the quote from the comment.
Sorry, something went wrong.
No branches or pull requests
I have tried running the example input but it just outputs like below. Can someone tell me what I'm doing wrong?
Using node v16.20.2
The text was updated successfully, but these errors were encountered: