Files @ daac0fdd6043
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/optimizejs.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 uglify = require('gulp-uglify');
const size   = require('gulp-size');


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