Skip to content
This repository has been archived by the owner on Nov 15, 2017. It is now read-only.

Commit

Permalink
Merged in changes from origin
Browse files Browse the repository at this point in the history
  • Loading branch information
swernerx committed Jul 19, 2016
1 parent 17844fd commit db36ddf
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions webpackConfigFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,15 +210,11 @@ function webpackConfigFactory({ target, mode, root }, { json })
mainFields: [ "jsnext:main", "main" ],

// These extensions are tried when resolving a file.
<<<<<<< HEAD
extensions: [ ".js", ".jsx", ".json" ],
=======
extensions: [
'.js',
'.jsx',
'.json',
],
>>>>>>> dcab988
]
},

plugins: removeEmpty([
Expand Down Expand Up @@ -300,16 +296,10 @@ function webpackConfigFactory({ target, mode, root }, { json })
// This is a production client so we will extract our CSS into
// CSS files.
ifProdClient(
<<<<<<< HEAD
new ExtractTextPlugin({
filename: "[name]-[chunkhash].css",
allChunks: true
})
=======
// This is a production client so we will extract our CSS into
// CSS files.
new ExtractTextPlugin({ filename: '[name]-[chunkhash].css', allChunks: true })
>>>>>>> dcab988
),
]),

Expand Down Expand Up @@ -417,13 +407,8 @@ function webpackConfigFactory({ target, mode, root }, { json })
// Javascript
{
test: /\.jsx?$/,
<<<<<<< HEAD
loader: "babel-loader",
exclude: [ /node_modules/, path.resolve(root, "./build") ],
=======
loader: 'babel-loader',
exclude: [/node_modules/, path.resolve(__dirname, './build')],
>>>>>>> dcab988
query: merge(
{
env:
Expand Down

0 comments on commit db36ddf

Please sign in to comment.