Closed nhall closed 10 years ago
I think your prefixed files are saved to a project root due to this misconfiguration:
prefix_files: {
expand: true,
flatten: true,
src: '<%= config.dist %>/*.css'
}
You should remove expand
and flatten
here.
I updated my gruntfile. Still doesn't prefix the transform. The CSS is wrapped in a media query @media (min-width: 37.5625em) {
could that have anything to do with this?
I can't reproduce the issue with the exact same config and CSS, so the problem is somewhere in config file I believe.
Must be hanging on something else in my CSS. I pulled out just that code into individual CSS file and ran the same task. Prefixed it fine. Must be particular to something else in my project. Thanks.
I am using this grunt plugin and the following CSS remains unprefixed:
Not the greatest selectors but I need to use the attribute selector to look at the data state. Modernizr adds the check for CSS transforms.
This is the task from my gruntfile.js:
Thanks