Integrate with gulp somehow? I haven't made a gulp plugin before and so I'm unsure the steps needed to make this work (or what changes to the code may need to happen).
Initial thought of how this look code-wise:
gulp.task('rotate', function() {
gulp.src('.')
.pipe(rotatelib.pipe({
before: '-2 weeks'
})
.pipe(rotatelib.removeItems());
});
Integrate with gulp somehow? I haven't made a gulp plugin before and so I'm unsure the steps needed to make this work (or what changes to the code may need to happen).
Initial thought of how this look code-wise: