babel-plugin-polyfill-env
v1.0.5
Published
auto include babel-pollyfill for entry file, and only polyfill needed for the browsers you support
Downloads
12
Maintainers
Readme
babel-plugin-polyfill-env
Without any configuration options, babel-plugin-polyfill-env behaves exactly the same as babel-plugin-require-polyfill.
However, we don't recommend using
polyfill-env
this way because it doesn't take advantage of it's greater capabilities of targeting specific browsers.
{
"plugins": ["polyfill-env"]
}
You can also configure it to only include the polyfill needed for the browsers you support. Compiling only what's needed can make your bundles smaller and your life easier.
This example only includes the polyfills needed for coverage of users > 0.25%, ignoring Internet Explorer 11 and Opera Mini.. We use browserslist to parse this information, so you can use any valid query format supported by browserslist.
{
"plugins": [
["polyfill-env", {
"targets": {
// The % refers to the global coverage of users from browserslist
"browsers": [ ">0.25%", "not ie 11", "not op_mini all"]
}
}]
]
}
You can also target individual versions of browsers instead of using a query with
"targets": { "chrome": "52" }
.
Install
Using npm:
npm install --save-dev babel-plugin-polyfill-env
or using yarn:
yarn add babel-plugin-polyfill-env --dev