Comparing version 1.3.0 to 1.3.1
# Change History | ||
## 1.3.1 (2014-05-29) | ||
* Fixed issue with logging timing | ||
## 1.3.0 (2014-05-28) | ||
@@ -4,0 +8,0 @@ |
@@ -125,6 +125,11 @@ module.exports = Application; | ||
function startOrNot(s) { | ||
debug('starting service %s', getName(s.constructor)); | ||
return function() { return s.start ? s.start() : s; }; | ||
} | ||
function message(s) { | ||
return function() { | ||
debug('starting service %s', getName(s.constructor)); | ||
}; | ||
} | ||
// Start them (if we can) in order. If the service has a start() method, it | ||
@@ -137,3 +142,3 @@ // can return a promise to delay the rest of the services from getting | ||
var s = this._running[m]; | ||
seq = seq.then(startOrNot(s)); | ||
seq = seq.then(message(s)).then(startOrNot(s)); | ||
} | ||
@@ -140,0 +145,0 @@ |
{ | ||
"name": "billy", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A minimal application harness that stays out of your way and out of your code.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -39,21 +39,10 @@ # billy | ||
## Tern Support | ||
The source files are all decorated with [JSDoc3](http://usejsdoc.org/)-style | ||
annotations that work great with the [Tern](http://ternjs.net/) code inference | ||
system. Combined with the Node plugin (see this project's `.tern-project` | ||
file), you can have intelligent autocomplete for methods in this library. | ||
## Testing | ||
Testing is done with [Tape](http://github.com/substack/tape) and can be run | ||
with the command `npm test`. | ||
``` | ||
$ npm test | ||
``` | ||
Automated CI cross-browser testing is provided by | ||
[Testling](http://ci.testling.com/bvalosek/billy), and server-side testing | ||
is done with [Travis CI](https://travis-ci.org/bvalosek/billy). | ||
## License | ||
Copyright 2014 Brandon Valosek | ||
**billy** is released under the MIT license. | ||
MIT |
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
421
20798
48