Skip to content

Instantly share code, notes, and snippets.

@marsvogel
Created December 1, 2014 13:54
Show Gist options
  • Save marsvogel/9a1cd063f57c345cfda0 to your computer and use it in GitHub Desktop.
Save marsvogel/9a1cd063f57c345cfda0 to your computer and use it in GitHub Desktop.
Use gulp-uglify
# Shell
# npm install --save-dev gulp-uglify
# gulpfile.js
var gulp = require("gulp");
var uglify = require('gulp-uglify');
gulp.task('scripts',function(){
gulp.src(["src/scripts/*.js"])
.pipe(uglify())
.pipe(gulp.dest("dist/scripts"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment