Comparing version 0.3.6 to 0.3.7
@@ -27,3 +27,3 @@ var Builder, CONFIG, file, fs, log, path, target, term, trace; | ||
Builder.prototype.RE_IGNORE_FILE = /^[_|\.]|[-|\.]min\.|svn|~$/; | ||
Builder.prototype.RE_IGNORE_FILE = /^\.|[-|\.]min\.|svn|~$/; | ||
@@ -30,0 +30,0 @@ Builder.prototype.RE_BUILT_HEADER = /^\/\*BUILT/g; |
@@ -26,2 +26,4 @@ var CSSTarget, JSTarget, Target, coffee, file, fs, growl, less, log, path, stylus, term, uglify; | ||
Target.prototype.RE_PARTIAL = /^_/; | ||
function Target(input, output, cache) { | ||
@@ -76,3 +78,5 @@ this.input = input; | ||
Target.prototype._addSource = function(file) { | ||
if (__indexOf.call(this.sources, file) < 0) return this.sources.push(file); | ||
if (__indexOf.call(this.sources, file) < 0 && !this.RE_PARTIAL.test(file.filename)) { | ||
return this.sources.push(file); | ||
} | ||
}; | ||
@@ -79,0 +83,0 @@ |
{ | ||
"name": "buddy", | ||
"description": "A build framework for the compilation of higher order js/css languages (coffeescript/stylus/less).", | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"author": "popeindustries <alex@pope-industries.com>", | ||
@@ -6,0 +6,0 @@ "keywords": ["javascript", "coffeescript", "styus", "less"], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
55094
725