hops-express
Advanced tools
Comparing version 7.3.2 to 7.3.4
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="7.3.4"></a> | ||
## [7.3.4](https://github.com/xing/hops/compare/v7.3.3...v7.3.4) (2017-10-27) | ||
### Bug Fixes | ||
* **express:** fix startServer method signature ([4692910](https://github.com/xing/hops/commit/4692910)) | ||
<a name="7.3.2"></a> | ||
@@ -8,0 +19,0 @@ ## [7.3.2](https://github.com/xing/hops/compare/v7.3.1...v7.3.2) (2017-10-26) |
@@ -13,3 +13,5 @@ 'use strict'; | ||
runServer: runServer, | ||
startServer: runServer // added for backwards compat - remove a.s.a.p. | ||
startServer: function (callback) { | ||
runServer({}, callback); | ||
} | ||
}; |
{ | ||
"name": "hops-express", | ||
"version": "7.3.2", | ||
"version": "7.3.4", | ||
"description": "Express server to enable server-side rendering of hops applications", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
5792
85