-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
sendMsg('Progress', data) #1427
Conversation
Travis CI failed because it couldn't install modules. Any chance someone can re-run that please? |
@SpaceK33z @shellscape. Kind ping. |
Sorry, but I no longer maintain this repo and recommend people use |
Do you know who the maintainer is @shellscape ? I saw your name with @SpaceK33z on the README. webpack-dev-server has 1.6 million weekly downloads. I'm guessing a ton of people and production code already depends on this package. It is a great piece of software that I use every single day and I'm very sad to see it added to npm's growing pile of abandoned modules 😢 |
As far as I know @SpaceK33z is the only one still poking at this module. It's recommended that you try |
Kind ping @SpaceK33z, any chance you'll be able to take a look at this and publish a patch version please? Thanks. |
Codecov Report
@@ Coverage Diff @@
## master #1427 +/- ##
=======================================
Coverage 79.27% 79.27%
=======================================
Files 6 6
Lines 497 497
Branches 161 161
=======================================
Hits 394 394
Misses 103 103 Continue to review full report at Codecov.
|
Thanks! Will do a release soon. |
You da best! Thanks 🙏 |
Motivation / Use-Case
One line change.
Context: we maintain a module that shows a webpack status bar on the browser page. It handles ok, error, status e.t.c messages but since progress isn't sent out we can't respond to that.
https://github.com/mixpanel/webpack-dev-server-status-bar
The goal is to make the bar respond to progress by showing a fixed bar on top that increases in width as progress increases. For this to happen webpack-dev-server needs to send the event via
postMessage
Breaking Changes
No breaking changes.