Errors in `webpack` break the pipe / task
See original GitHub issueHello,
I am using webpack
and gulp
to build a coffee-script
app using webpack
watch
option.
Any coffee-loader
error, such as a syntax error, will just crash webpack
along with gulp
.
Using plumber
or anything to catch the error will prevent gulp
from crashing but won’t keep webpack
alive.
How can we fix that?
Issue Analytics
- State:
- Created 9 years ago
- Reactions:16
- Comments:31 (4 by maintainers)
Top Results From Across the Web
Developers - Errors in `webpack` break the pipe / task - - Bountysource
Errors in `webpack ` break the pipe / task ... Hello,. I am using webpack and gulp to build a coffee-script app using...
Read more >How to show webpack errors in gulp - Stack Overflow
Add an error handler to the webpackStream pipe: .pipe(webpackStream(require("./webpack.config.js"), webpack)) .on('error',function (err) ...
Read more >How I solved and debugged my Webpack issue through trial ...
When webpack bundles your source code, it can become difficult to track down errors and warnings to their original location.
Read more >Integrations - webpack
It is not a task runner like Make, Grunt, or Gulp. ... For example, JavaScript can be minified or split into chunks and...
Read more >Webpack — What is it and is it better than Gulp? - Vanila Blog
Have dead code elimination — that basically means that Webpack can find code that you are not actually using and not add it...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop 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
Top GitHub Comments
@ArnaudRinquin - Ran into this same issue. It’s a gulp issue I think. There’s a good explanation in https://github.com/gulpjs/gulp/issues/259. The following worked for me:
I’m not sure. I don’t use
plumber
or thewatch
option with webpack.