Closed theDustRoom closed 11 years ago
About the first issue: you should add one more level (target) to your task config according to Grunt documentation (e.g. dist
):
autoprefixer: {
dist: {
options: {
browsers: ["last 2 versions", "> 1%", "ie 8", "ie 7"]
},
files: {
"css/mycss_prefixed.css": ["css/mycss_1.css", "css/mycss_2.css"]
}
}
}
In my gruntFile.js if I include:
It doesn't work but if I include this it does:
Also; the inbuilt CSS concatenation injects a comma as a separator - can this be removed?