diff --git a/README.md b/README.md index 5dabf4e..1555c7a 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,10 @@ Arguments: ## Changelog +### v1.0.8 (May 8, 2020) + +- __Patch:__ The previous release included a small error that broke Express integration; this is now fixed. + ### v1.0.7 (May 8, 2020) - __Patch:__ Now uses `inject-lr` for LiveReload script injection instead of a custom implementation, to make it more robust in edge cases. diff --git a/operations/development-server.js b/operations/development-server.js index 41a290c..3a5ffed 100644 --- a/operations/development-server.js +++ b/operations/development-server.js @@ -30,6 +30,8 @@ function createExpressMiddleware(app, fullBundlePath) { next(); } }); + + return handler; } module.exports = function ({ options, staticPath, staticBasePath, entryPaths, host }) {