Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emit progress-update event on the listeningApp, allowing update progress to be obtained in the node API. #1666

Closed
wants to merge 3 commits into from
Closed

Commits on Feb 15, 2019

  1. emit progress-update event on the listeningApp, allowing update progr…

    …ess to be obtained in the node API.
    
    ```
    new webpackDevServer(webpack, config).listen(port, hostname, function (err) {
      this.on('progress-update', ({ percent, msg }) => {
        console.log(`${percent}% - ${msg}.`);
      });
    });
    ```
    pfdgithub committed Feb 15, 2019
    Configuration menu
    Copy the full SHA
    c98250e View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2019

  1. Configuration menu
    Copy the full SHA
    4ea9f72 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. Configuration menu
    Copy the full SHA
    ee98dc3 View commit details
    Browse the repository at this point in the history