Created
November 6, 2013 17:13
-
-
Save ttback/7340180 to your computer and use it in GitHub Desktop.
This file contains 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: { | |
development: { | |
options: { | |
banner: '/*! Development <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n', | |
mangle: false, | |
compress: false, | |
preserveComments: 'all', | |
beautify: true | |
}, | |
all: { | |
files: [{ | |
expand: true, | |
cwd: 'src/js/bundle', | |
src: ['*.js'], | |
dest: 'js-min/', | |
//ext: '.min.js', //commenting out for now | |
}], | |
} | |
} | |
} |
shama
commented
Nov 6, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment