kevva / import-regex

Regular expression for matching CSS @imports
MIT License
10 stars 2 forks source link

List of media query with comma delimited is not acceptable #3

Open kevinptt0323 opened 6 years ago

kevinptt0323 commented 6 years ago

The following case will not be accepted:

@import url("bluish.css") projection, tv;
@import "common.css" screen, projection;
kevinptt0323 commented 6 years ago

btw, the following invalid case will be accepted.

@import "a.css" "b.css";