Files @ daac0fdd6043
Branch filter:

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

Brett Smith
templates: Render payment buttons at the bottom of invoices.

In addition to the top, to better follow modern convention.
const gulp = require('gulp');
const nano = require('gulp-cssnano');
const size = require('gulp-size');


module.exports = (source, options, dist) => {
    return gulp.src(source)
        .pipe(nano(options))
        .pipe(gulp.dest(dist))
        .pipe(size());
};