I'm trying to use grunt cssmin on two files: style.css and ie.css (without concatenating them).
For the moment I have this in my grunt.js:
cssmin: {
dist: {
src: ['<banner:meta.wpblock>', '../style.css'],
dest: '../style.css'
}
},
Is it possible to specify several src (../style.css and ../ie.css) and several dest (../style.css and ../ie.css)?