Skip to content

Releases: elisherer/webpack-dev-server-waitpage

3.0.0

25 Mar 08:30
c6dad4f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.1.1...3.0.0

2.1.1

11 Dec 10:32
Compare
Choose a tag to compare
  • Fix #23 - Cannot read property 'includes' of undefined when disableWhenValid = false

2.1.0

28 Oct 21:02
Compare
Choose a tag to compare
  • Add ignore option to ignore certain urls or by request properties using function/s.
  • Change material theme colors and progress starts at 12 o'clock and continues clockwise.
  • Add some unit tests

2.0.1

10 Sep 05:42
Compare
Choose a tag to compare
  • Try to fix peer dependency of webpack (v4 OR v5)

2.0.0

24 Aug 08:24
Compare
Choose a tag to compare
  • Add support for webpack 5 (see the latest setup instructions, also relevant to the latest v4)

1.0.2

12 Aug 18:38
Compare
Choose a tag to compare
  • Add TypeScript definitions (#8)
  • Add some JSDoc and some newlines in the code.

1.0.1

21 Jul 18:50
Compare
Choose a tag to compare
  • README: Fix require path and rephrasing (#2)
  • Break long pathnames to prevent overflow and add spacing between messages for better readability (#3)
  • Add webpack-serve 2.0.0 as peerDep (#4)

1.0.0

19 May 10:50
Compare
Choose a tag to compare
  • First major release
  • Added disableWhenValid option (as default true). This will stop the wait page from appearing after the application started.
  • Updated the peer dependency of webpack-serve to v1
  • Internal project reorganization

0.3.0

09 May 09:23
Compare
Choose a tag to compare

Breaking Change - The library is now only a middleware, use it with the provided options of add with the optional additional middleware options (see README.md for details).

  • No need for adding a plugin anymore (happens from within the middleware initialization)
  • Added support for multiple webpack ocnfigurations (changed 3 predefined themes)

0.2.0

06 May 13:56
Compare
Choose a tag to compare

Breaking Change - the middleware is now a factory, and needs to be invoked to get the koa middleware.
i.e. app.use(webpackServeWaitpage.middleware());

  • Added 2 predefined themes: dark and meterial.
  • Template can be altered by providing a template in the middleware options object.
  • Template now uses ejs for rendering.