Skip to content

Instantly share code, notes, and snippets.

@gustavoquinalha
Created April 27, 2017 14:01
Show Gist options
  • Save gustavoquinalha/b790684bf88ac1c45d1fe54379d42206 to your computer and use it in GitHub Desktop.
Save gustavoquinalha/b790684bf88ac1c45d1fe54379d42206 to your computer and use it in GitHub Desktop.
gulp.task('minifi-js', function(){
gulp.src('js/test/all.js')
.pipe(concat('final.min.js'))
.pipe(uglify())
.pipe(gulp.dest('js'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment