Skip to content

mc-zone/webpack2-polyfill-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webpack2 Polyfill Plugin Build Status npm version

Insert polyfills for Webpack2

Includes:

  • Promise
  • Function.prototype.bind
  • Object.keys
  • Object.defineProperty (defineGetter/defineSetter)

See:What's new in webpack 2

How to use:

step 1. Install

npm install webpack2-polyfill-plugin --save

step 2. Use plugin at your webpack config

var Webpack2Polyfill = require("webpack2-polyfill-plugin");

module.exports = {

  //...

  plugins: [
    new Webpack2Polyfill()
  ]
};

Compatible:

IE.9 and above (Currently)

Why not IE8 ?

IE8 can't use Object.defineProperty with non-DOM Object. So can't do polyfill with some Webpack2 Usage (Ex: Using defineProperty at exports for Harmony Export).

License

MIT

About

Insert polyfills (such as Promise) for Webpack 2

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published