Files @ 2642c0311574
Branch filter:

Location: symposion_app/gulp/tasks/rev.js

Sachi King
Sneak 2017 into the list of previous years
/**
 * Dependencies
 */
const gulp = require('gulp');
const rev  = require('gulp-rev');

/**
 * Module body / Expose
 */
module.exports = (entry, config) => {
  config = config || {};
  return gulp.src(entry)
    .pipe(rev());
};