Skip to content

Instantly share code, notes, and snippets.

@LucasLLLS
Created July 19, 2016 01:10
Show Gist options
  • Save LucasLLLS/134a92aa99b15c7c84397950d40d809b to your computer and use it in GitHub Desktop.
Save LucasLLLS/134a92aa99b15c7c84397950d40d809b to your computer and use it in GitHub Desktop.
Basic gulpfile with uglify
var gulp = require('gulp');
uglify = require('gulp-uglify');
gulp.task('default', function() {
// corpo da tarefa
gulp.src('js/*.js')
.pipe(uglify())
.pipe(gulp.dest('minjs'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment