-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
it seems that this doesn’t work together with gulp-plumber.
i think you have to splice in the plumber before running things that throw errors, but rollup-stream works by directly creating an output stream that emits errors.
it would be nice if there was a way to not rely on unsightly code like this:
gulp.task('build-react', () => {
const stream = rollup({ entry: 'src/js/main.js' })
return stream
.on('error', e => {
console.error(`${e.stack}`)
stream.emit('end')
})
...
})
Metadata
Metadata
Assignees
Labels
No labels