Skip to content

v5.0.0

Compare
Choose a tag to compare
@shellscape shellscape released this 02 Jun 18:02
· 152 commits to master since this release

This version updates webpack-hot-client to the latest version.

Breaking Changes

[email protected] contains many breaking changes. The breaking changes here follow those changes.

  • dev option now named devMiddleware
  • hot option now named hotClient
  • The result from calling the default koa-webpack export now returns a Promise
    e.g.
  koaWebpack({ ... opts ... })
   .then((middleware) => {
    app.use(middleware);
  });