Skip to content

Instantly share code, notes, and snippets.

@reubenmoes
Last active August 29, 2015 14:09
Show Gist options
  • Save reubenmoes/22707e196fd9c968634d to your computer and use it in GitHub Desktop.
Save reubenmoes/22707e196fd9c968634d to your computer and use it in GitHub Desktop.
Remove logging using grunt-contrib-uglify
uglify: {
options: {
banner: '<%= banner %>',
compress: {
//THE MAGIC HAPPENS HERE
drop_console: true,
drop_debugger: true
}
},
dist: {
src: '<%= concat.dist.dest %>',
dest: 'js/build/<%= pkg.name %>.min.js'
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment