Files @ 2fbc85db8e1b
Branch filter:

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

Christopher Neugebauer
Increases margin on tight-headings so that there isn’t interaction between two adjacent H1/H2 blocks
/**
 * 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());
};