Closed DimitarChristoff closed 7 years ago
When running with:
--target-browsers \"Firefox >=44,Chrome >=48,IE >=9,last 2 version\"
it should pass this to autoprefixer in the postcss stage
export default function configure(pkg, opts) { const cc = postcss([cssimport, cssnext]) , map = opts.debug? { inline: false } : false
this does not take into account opts.targetBrowsers
opts.targetBrowsers
const cc = postcss([cssimport, cssnext({browsers: opts.targetBrowsers}])
Currently, used in js here:
https://github.com/zambezi/ez-build/blob/aaac92b52a911cc1b1eae278fa5cc51dd2627ffc/src/builder/javascript.js#L43-L55
When running with:
it should pass this to autoprefixer in the postcss stage
this does not take into account
opts.targetBrowsers
Currently, used in js here:
https://github.com/zambezi/ez-build/blob/aaac92b52a911cc1b1eae278fa5cc51dd2627ffc/src/builder/javascript.js#L43-L55