Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created August 6, 2014 13:00
Show Gist options
  • Save rafaelrinaldi/c77d00e9c18ccc8b0750 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/c77d00e9c18ccc8b0750 to your computer and use it in GitHub Desktop.
gulp.task('js', function() {
gulp.src('./js/main.js')
.pipe(uglify())
.pipe(wrap('(function(){<%= contents %>})()'))
.pipe(concat('main.min.js'))
.pipe(gulp.dest('./js/'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment