component-builder
Advanced tools
Comparing version 0.5.0 to 0.5.1
0.5.1 / 2012-12-04 | ||
================== | ||
* fix data uri support | ||
0.5.0 / 2012-12-04 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -686,3 +686,8 @@ | ||
function isData(url) { | ||
return 0 == url.indexOf('data:'); | ||
} | ||
function rewrite(url) { | ||
if (isData(url)) return url; | ||
if (isAbsolute(url)) return url; | ||
@@ -689,0 +694,0 @@ var name = normalize(builder.name); |
{ | ||
"name": "component-builder", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "Component build tool", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
19816
629