Files @ 50bc1497e971
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/rev.js - annotation

50bc1497e971 230 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
Fixes another thing
/**
 * 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());
};