Skip to content

Releases: xcatliu/react-ie8

Update deprecate README

06 Jan 11:10
Compare
Choose a tag to compare

Deprecate react-ie8

05 Jan 07:05
Compare
Choose a tag to compare

I have realized that it was foolish to include all possible requirements in one package, because once they are bundled into one js file, all required files will be included, although some may not be useful.

So package react-ie8 _will be deprecated_.

In addition, react-ie8 will focus on providing a series of examples for people who are facing the same compatible problems, as will as collecting issues.

Have fun with react-ie8 examples, and feel free to open an issue.

Worked version

29 Dec 16:40
Compare
Choose a tag to compare
  • Add document, both Chinese and English version #15
  • Remove es3ify because it is not the default required plugin (or loader) #15

Add es3ify to examples/hello-world and it finally works.

29 Dec 16:36
Compare
Choose a tag to compare
  • Fix react-ie8 babel transform issue, use module.exports instead of export default #14
  • Created a webpack-plugin: es3ify-webpack-plugin, need to be published independently #14
  • Move examples scripts to examples folds #14

Fix lib doesn't exist problem

29 Dec 06:50
Compare
Choose a tag to compare
  • lib is ignored while publishing, add an empty .npmignore file to solve the problem #13

https://docs.npmjs.com/misc/developers#keeping-files-out-of-your-package

Add babel-plugin-add-module-exports

29 Dec 06:47
Compare
Choose a tag to compare
  • Fix babel transform doesn't support the module.exports

Now we can use

require('react-ie8')(options);

instead of

require('react-ie8').default(options);

First version

26 Dec 02:24
Compare
Choose a tag to compare

The first version of react-ie8, only support commonJS style:

require('react-ie8')(options);

Supported options:

  • es5-shim default: true
  • es5-sham default: true
  • console-polyfill default: true