https://github.com/beda-software/webpack-polyfills-plugin
Fork from Sl1v3r/webpack-polyfills-plugin
https://github.com/beda-software/webpack-polyfills-plugin
Last synced: about 1 year ago
JSON representation
Fork from Sl1v3r/webpack-polyfills-plugin
- Host: GitHub
- URL: https://github.com/beda-software/webpack-polyfills-plugin
- Owner: beda-software
- Created: 2016-02-15T04:42:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T00:13:19.000Z (about 3 years ago)
- Last Synced: 2024-10-13T13:13:42.386Z (over 1 year ago)
- Language: JavaScript
- Size: 908 KB
- Stars: 12
- Watchers: 5
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://badge.fury.io/js/webpack-polyfills-plugin)
# webpack-polyfills-plugin
Adds polyfills from [polyfill-service](https://github.com/Financial-Times/polyfill-service) to bundle file. Without magic.
Now the **maintained** plugin, forked from https://github.com/beda-software/webpack-polyfills-plugin/ and ownership transferred.
## Usage:
```javascript
var PolyfillsPlugin = require('webpack-polyfills-plugin');
module.exports = {
// ...
plugins: [
new PolyfillsPlugin([
'Array/prototype/find',
'fetch',
'Object/assign'
])
]
}
```