I've used grunt-modernizr before, but on my current project we're using Gulp, and I'd like to use this project to the same end. However, the configuration looks different to me and the README on customizr isn't helping too much. On customizr the configuration options look like:
{
options: [
'setClasses',
'addTest',
'html5printshiv',
'testProp',
'fnBind'
]
}
… but I'm not sure how (or if) these options map to Modernizr's "Extra" section. It was a little clearer with grunt-modernizr:
{
extra: {
shiv: true,
printshiv: false,
load: true,
mq: false,
cssclasses: true
}
}
… I had a configuration I liked in grunt-modernizr. What's the easiest way to re-create that configuration with the Gulp version? Thanks!
I've used
grunt-modernizrbefore, but on my current project we're using Gulp, and I'd like to use this project to the same end. However, the configuration looks different to me and the README oncustomizrisn't helping too much. Oncustomizrthe configuration options look like:… but I'm not sure how (or if) these options map to Modernizr's "Extra" section. It was a little clearer with
grunt-modernizr:… I had a configuration I liked in
grunt-modernizr. What's the easiest way to re-create that configuration with the Gulp version? Thanks!