css-resolve-import
Advanced tools
Comparing version 0.0.3 to 0.1.0
{ | ||
"name": "css-resolve-import", | ||
"version": "0.0.3", | ||
"version": "0.1.0", | ||
"description": "Resolves @import statements in CSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,3 +9,3 @@ module.exports = parse | ||
var importMatcher = /@import +(?:url\()?([^()]+)\)?(:? *;)?/g | ||
var urlMatcher = /url\(["']?([^"'()]+)["']?\)/g | ||
var urlMatcher = /url\(["']?([^"'()]+?)(?:\?.*?)?["']?\)/g | ||
var urlWithScheme = /^(?:[a-z][a-z-+.0-9]*:)?\/\//i | ||
@@ -12,0 +12,0 @@ var absoluteUrl = /^\//i |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2301