You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like the sink functionality. I just wish I didn't have to define a variable first. 95% of my tasks are single statements, and use arrow functions. Would like to be able to write, e.g.:
gulp.task('example',()=>gulp.src(['foo/**/*.svg']).pipe(clone.pushSink())// create a new sink, push it to stack.pipe(raster())// destructive editing.pipe(rename()).pipe(clone.popSink())// pop sink from stack, tap sink.pipe(gulp.dest('.')));
I don't think this would be hard to implement. Example:
I like the sink functionality. I just wish I didn't have to define a variable first. 95% of my tasks are single statements, and use arrow functions. Would like to be able to write, e.g.:
I don't think this would be hard to implement. Example:
The text was updated successfully, but these errors were encountered: