Closed zkat closed 10 years ago
I got this error when using es6ify with transform-loader:
transform-loader
Error: callback(): The callback was already called. at context.callback (/path/to/webpack/node_modules/webpack-core/lib/NormalModuleMixin.js:141:11)
When there was a syntax error. Specifically, this is where I traced the error to: https://github.com/thlorenz/es6ify/blob/master/index.js#L79-L93
And this line is the one that actually triggers the error: https://github.com/thlorenz/es6ify/blob/master/index.js#L88
It looks like transform-loader really dislikes getting extra data queued in (even if null) when an error has been emitted?
I got this error when using es6ify with
transform-loader
:When there was a syntax error. Specifically, this is where I traced the error to: https://github.com/thlorenz/es6ify/blob/master/index.js#L79-L93
And this line is the one that actually triggers the error: https://github.com/thlorenz/es6ify/blob/master/index.js#L88
It looks like
transform-loader
really dislikes getting extra data queued in (even if null) when an error has been emitted?