I've noticed that the task won't add the IE10 specific flexbox syntax, despite being configured to do so.
According to Autoprefix readme examples this should be possible:
Just code by latest W3C specs and Autoprefixer will produce the code for old browsers:
a {
display: flex;
}
compiles to:
a {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex
}
I've noticed that the task won't add the IE10 specific flexbox syntax, despite being configured to do so.
According to Autoprefix readme examples this should be possible: