Comparing version 2.1.3 to 2.1.4
@@ -186,3 +186,7 @@ var fs = require('fs'), | ||
if(!result) { | ||
removed.push((packageObj.basepath ? packageObj.basepath : '') + name); | ||
if(name.charAt(0) == '/' ) { | ||
removed.push(name); | ||
} else { | ||
removed.push((packageObj.basepath ? packageObj.basepath : '') + name); | ||
} | ||
} | ||
@@ -189,0 +193,0 @@ return result; |
@@ -41,3 +41,4 @@ var fs = require('fs'), | ||
cacheHits = [], | ||
optsHash = Cache.hash(JSON.stringify(options)); | ||
optsHash = Cache.hash(JSON.stringify(options)), | ||
progress; | ||
@@ -269,2 +270,7 @@ // console.log(util.inspect(list.files.map(function(item) { return item.name; }), false, 20, true)); | ||
// tj's progress can make the process hang (!) if the total count is off due to exclusions | ||
if(progress && progress.rl && progress.rl.close) { | ||
progress.rl.close(); | ||
} | ||
// if any reporting is explicitly enabled | ||
@@ -271,0 +277,0 @@ if(options.report || options.verbose || options.progress) { |
{ | ||
"name": "gluejs", | ||
"description": "Build CommonJS modules for the browser via a chainable API", | ||
"version": "2.1.3", | ||
"version": "2.1.4", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Mikito Takada", |
Sorry, the diff of this file is not supported yet
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
87789
1540