In my GruntFile.js I have bower task:
bower: {
dev: {
dest: 'lib'// will get stuff from 'bower_components' to 'lib' folder
}
},
So when I do: grunt bower it transforms some stuff from bower_component folder to lib.. so I end up having files like: angular.js in the /lib.
But it does not copy "angular.min.js", which sits in bower_component.
Q: How can I configure grunt bower task to copy minified v of files too?
I do not want to put minify/uglify tasks to GruntFile just yet. Since those files are already minified in bower_components.