Skip to content

Instantly share code, notes, and snippets.

@bloodyowl
Created March 25, 2014 14:55
Show Gist options
  • Save bloodyowl/9763492 to your computer and use it in GitHub Desktop.
Save bloodyowl/9763492 to your computer and use it in GitHub Desktop.
glurnt.js
var glurnt = require("gulp")
, uglify = require("gulp-uglify")
glurnt.task("k", function(){
return glurnt.src("foo/**")
.pipe(uglify())
.pipe(glurnt.dest("dist/foo"))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment