Skip to content

Instantly share code, notes, and snippets.

@Colmea
Created January 20, 2016 13:14
Show Gist options
  • Save Colmea/c8c257338ea64f14a44f to your computer and use it in GitHub Desktop.
Save Colmea/c8c257338ea64f14a44f to your computer and use it in GitHub Desktop.
gulp.task('compileVendorJS', function () {
return gulp.src($.mainBowerFiles({filter: "**/*.js"}))
.pipe($.filelog())
.pipe($.concat('vendor.js'))
//.pipe($.uglify())
.pipe(gulp.dest('./lib'))
.pipe($.notify({message: 'Vendor JS compiled!'}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment