Created
July 29, 2015 21:02
-
-
Save markgoodyear/d7bfd94eae95af18e308 to your computer and use it in GitHub Desktop.
Revisions
-
markgoodyear created this gist
Jul 29, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ var gulp = require('gulp'); var uglify = require('gulp-uglify'); var concat = require('gulp-concat'); var bower = require('main-bower-files'); gulp.task('bower', function () { return gulp.src(bower()) .pipe(concat('vendor.js')) .pipe(uglify()) .pipe(gulp.dest('/build/scripts')); });