Skip to content

Commit

Permalink
Adds polyfill for Object.assign
Browse files Browse the repository at this point in the history
- Ensures support for IE 10, IE 11
- Fixes #350

Signed-off-by: Christopher Rogers <chrissrogers@gmail.com>
  • Loading branch information
chrissrogers committed May 30, 2017
1 parent c85a254 commit a83d433
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"assert": "^1.4.1",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"combinations": "^0.1.1",
"glob": "^7.1.1",
Expand Down
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ module.exports = {
loader: 'babel',
query: {
cacheDirectory: true,
presets: ['es2015']
presets: ['es2015'],
plugins: ['transform-object-assign']
}
}
]
Expand Down

0 comments on commit a83d433

Please sign in to comment.