Any help would be appreciated. I am trying to split up my main css stylesheet (specifically for ie9) it exceeds the number of lines that IE9 can handle and I want to add a grunt task which splits the main css sheet into however many it needs to.
I thought bless would solve this but I can't get it to work.
The task below simply just copies the main stylesheet 'foundation.css' into 'tmp/ie.css' - what am I doing wrong?
Here is how I have my task
bless: {
css: {
options: {
logCount: true,
compress: true,
suffix: 'oldie'
},
files: [{
src: 'css/foundation.css', // this is the main stylesheet
dest: 'tmp/ie.css' // i was hoping bless would split the main stylesheet above into this sheet? how is it suppose to work?
}]
}
},