Skip to content

Commit

Permalink
Merge pull request #130 from threeve/safari-object-assign-polyfill
Browse files Browse the repository at this point in the history
Use babel-core polyfill for Safari.
  • Loading branch information
kenwheeler committed Dec 11, 2015
2 parents fd85d3a + fac106b commit 29bf526
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = {
devtool: 'source-map',
entry: [
'webpack-hot-middleware/client',
'babel-core/polyfill',
'./index'
],
output: {
Expand Down
5 changes: 4 additions & 1 deletion webpack.config.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ var path = require("path");
var webpack = require("webpack");

module.exports = {
entry: "./index",
entry: [
"babel-core/polyfill",
"./index"
],
output: {
path: path.join(__dirname, "dist"),
filename: "bundle.js",
Expand Down

0 comments on commit 29bf526

Please sign in to comment.