Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Releases: webpack-contrib/webpack-serve

v2.0.2

20 Aug 12:42
Compare
Choose a tag to compare

v2.0.1

09 Jul 16:34
Compare
Choose a tag to compare

Bugfixes

  • fix: serve config regression #211

v2.0.0

09 Jul 12:59
Compare
Choose a tag to compare

Bugfixes

  • Optimize compilation events to prevent unneeded stats.toJson() call #182

Updates

  • Test coverage is now at 100%
  • Log content paths to console #167
  • Leverage webpack-hot-client HTTPS Improvements

Breaking Changes

  • The main entry point for the API has changed from serve(options) to serve(argv, options)
  • serve(argv, options) returns a promise that resolves when the server has begun
    listening and is fully setup. negates the need for the listening event.
  • serve(argv, options) resolved value contains app, on, options
  • serve(...) API no longer returns a server instance nor stop method. See result.app and app.stop.
  • --dev is now --devWare
  • --hot is now --hotClient
  • options.dev is now options.devMiddleware
  • options.hot is now options.hotClient

v1.0.3

07 Jun 02:56
Compare
Choose a tag to compare

Bugfixes

  • fix: https cert/key via API and CLI (#154)
  • fix: properly pass require to config-loader (#153)
  • fix: use buffer for pfx option/flag (#142)

Updates

  • docs: update event names in README.md to match code (#157)
  • docs: update readme with correct content default value
  • docs: add ssl certificate generation notes
  • docs: remove function config note, add mode note

v1.0.2

06 Jun 13:11
Compare
Choose a tag to compare

Updates

  • chore: update koa-webpack dependency

v1.0.1

06 Jun 13:12
Compare
Choose a tag to compare

Updates

  • docs: remove unstable, update event param docs

v1.0.0

13 May 01:42
Compare
Choose a tag to compare

Bugfixes

  • fix: calling middleware in add should find open ports. fixes #130 (#133)

Features

  • feat: improve event parameters (#136)
  • feat: add build-started and build-finished events (#122) …

Updates

  • refactor: use config-loader (#126)
  • docs: replace koa-compressor with koa-compress (#128)
  • docs: add webpack-serve-waitpage to readme add-ons section (#113)
  • docs: add example to reuse open tab in Chrome (#120)

Breaking Changes

This version also updates the webpack-hot-client dependency to use v3.0.0. For more information, please read the release notes.

This version improves and refactors the parameters for emitted events. All event parameters are now a single object with named properties.

v0.3.2

01 May 03:31
Compare
Choose a tag to compare

Bugfixes

  • fix: bad server uri for https (#111)
  • fix: handle exit on windows, closing cmd window (#110)

v0.3.1

01 May 03:23
Compare
Choose a tag to compare

Bugfixes

  • fix(cli): fixes #70. dev/hot flags should be parsed (#91)
  • fix(options): fix host and hot.host checks (6180d9f)
  • Add 'require' flag to preload JS modules (#83)

v0.3.0

28 Mar 00:13
Compare
Choose a tag to compare

Bugfixes

  • Open option fixes (#72)

Features

  • Allow Users to Completely Disable webpack-hot-client (#50)

Updates

  • add watch-content addon example (#76)
  • Simplify proxy addon example (#62)
  • Fix event emitter example code in README (#52)