Feature request: expose errors to plugins
See original GitHub issueBy now errors in Webpack is handled like this, an error message:
        errors: function(errors) {
            status.text("App updated with errors. No reload!");
            okness.text("Errors while compiling.");
            $errors.text("\n" + stripAnsi(errors.join("\n\n\n")) + "\n\n");
            header.css({borderColor: "#ebcb8b"});
            $errors.show(); iframe.hide();
        },
If that code is exposed then we may get error messages like this with plugins, and it can be quite convenient, as it already was in ClojureScript projects.
update:
I made a prototype https://github.com/mvc-works/webpack-hud
Issue Analytics
- State:
 - Created 7 years ago
 - Comments:5 (5 by maintainers)
 
Top Results From Across the Web
show complition errors via browserSync fullscreen message ...
Hi! Thx for browser-sync-webpack-plugin! I got an idea: show error overlay , when webpack done compliation with errors.
Read more >[Feature request] Report errors when loading Python plugins
When a Python action plugin raises an exception during initialization, this error is silently ignored by Pcbnew. This has two consequences:.
Read more >Feature Request: Allow us to see the Change Log for plugins
I assume you store your plugin code in some code repository. Would it be possible to expose the changelog for the plugin repo...
Read more >Feature request | WordPress.org
Currently, the plugin only has feature to run code on front end or backend only. ... That's because code that runs for Woocommerce...
Read more >Common WordPress Errors and Access Logs - Support Center
A list common error codes you may see on your WordPress site and why these error codes happen and common troubleshooting steps for...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I exposed some events to the window now with 06c7773e9b6a0e3dbe43e53f605dbc221edc4e29. An example of how to use it:
Let me know if you have any feedback. It’s not released yet.
Closing this since the feature has been implemented. Let me know if you don’t like the API or want to make some changes.