Comparing version 4.1.4 to 4.1.5
@@ -74,3 +74,3 @@ /** | ||
debug('Dispatched \'%s\'.', action); | ||
debug('Dispatched \'%s\'', action); | ||
fn.call(this, this.locals.payload, _stopDispatching.bind(this)); | ||
@@ -109,5 +109,6 @@ }; | ||
debug('Waiting for%s', actions.map(function(action) { | ||
return ' \'' + action + '\''; | ||
})); | ||
debug('Waiting for ' + actions.reduce(function(prev, action, i, arr) { | ||
if (i == actions.length - 1) return prev + '\'' + action + '\''; | ||
return prev + '\'' + action + '\', '; | ||
}, '')); | ||
var nwArr = arr.concat(done.bind(this)); | ||
@@ -114,0 +115,0 @@ |
{ | ||
"name": "barracks", | ||
"version": "4.1.4", | ||
"version": "4.1.5", | ||
"description": "An event dispatcher for the flux architecture", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
10803
144