Skip to content

Commit

Permalink
Added babel-polyfill to support IE11 (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
George Schneeloch authored Jun 21, 2016
1 parent 86249fc commit 073eb49
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 27 deletions.
140 changes: 115 additions & 25 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"babel-plugin-jsx": "1.2.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-react-jsx": "6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ var webpack = require("webpack");

module.exports = {
entry: {
'dashboard': './static/js/dashboard',
'public': './static/js/public',
'dashboard': ['babel-polyfill', './static/js/dashboard'],
'public': ['babel-polyfill', './static/js/public'],
'style': './static/js/style',
'style_public': './static/js/style_public',
},
Expand Down

0 comments on commit 073eb49

Please sign in to comment.