Skip to content

Instantly share code, notes, and snippets.

@brunogarcia
Created October 14, 2015 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunogarcia/e891f7886a0b62898720 to your computer and use it in GitHub Desktop.
Save brunogarcia/e891f7886a0b62898720 to your computer and use it in GitHub Desktop.
/*
Uglify
Minify files with UglifyJS
https://github.com/gruntjs/grunt-contrib-uglify
*/
'uglify': {
my_target: {
files: {
'<%= config.dist %>/assets/js/main.min.js':
[
'<%= config.dev %>/assets/js/vendors/jquery.js',
'<%= config.dev %>/assets/js/vendors/preloadjs.js',
'<%= config.dev %>/assets/js/vendors/soundjs.js',
'<%= config.dev %>/assets/js/main.js'
]
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment