Files @ d0bbb39748cf
Branch filter:

Location: symposion_app/gulp/tasks/optimizejs.js

Nick Seidenman (N6)
A few more tweaks to app.css, removing stuff that makes things look less like the wooden site.
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());
};