Created
October 14, 2015 08:38
-
-
Save brunogarcia/e891f7886a0b62898720 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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