component-builder
Advanced tools
Comparing version 0.8.2 to 0.8.3
0.8.3 / 2013-06-06 | ||
================== | ||
* update require | ||
* fix url to rework in readme | ||
* fix leading "/" in url when urlPrefix is empty-string | ||
0.8.2 / 2013-05-13 | ||
@@ -3,0 +10,0 @@ ================== |
@@ -59,3 +59,3 @@ /** | ||
this.config.paths = this.config.paths || []; | ||
this.basename = this.root | ||
@@ -951,3 +951,3 @@ ? this.config.name | ||
var name = normalize(builder.basename); | ||
url = [builder.urlPrefix, name, dirname(file), url].join('/'); | ||
url = [builder.urlPrefix, name, dirname(file), url].filter(empty).join('/'); | ||
return 'url("' + url + '")'; | ||
@@ -960,2 +960,10 @@ } | ||
/** | ||
* Empty string filter. | ||
*/ | ||
function empty(s) { | ||
return '' != s; | ||
} | ||
/** | ||
* Merge `b` into `a`. | ||
@@ -962,0 +970,0 @@ * |
{ | ||
"name": "component-builder", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "Component build tool", | ||
@@ -11,3 +11,3 @@ "keywords": [ | ||
"dependencies": { | ||
"component-require": "0.2.1", | ||
"component-require": "0.2.2", | ||
"batch": "0.2.1", | ||
@@ -14,0 +14,0 @@ "mkdirp": "0.3.4", |
@@ -70,3 +70,3 @@ # builder.js | ||
or compile a template to javascript so that it may be loaded with `require()`, or use | ||
CSS pre-processors such as [rework](github.com/visionmedia/rework). | ||
CSS pre-processors such as [rework](https://github.com/visionmedia/rework). | ||
@@ -73,0 +73,0 @@ ## Examples |
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
28536
865
+ Addedcomponent-require@0.2.2(transitive)
- Removedcomponent-require@0.2.1(transitive)
Updatedcomponent-require@0.2.2