Skip to content

Commit

Permalink
馃悰 fix constructing plugin module, missing new
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkvasnicak committed Jun 20, 2017
1 parent 36bf831 commit c07016f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "spust",
"version": "0.13.0-1",
"version": "0.13.0-2",
"description": "Quickly bootstrap universal javascript applications.",
"keywords": [
"webpack",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/createWebpackPlugins.js
Expand Up @@ -67,7 +67,7 @@ export default function createWebpackPlugins(

// webpack 3.0's
!isDev && webpack.optimize.ModuleConcatenationPlugin
? webpack.optimize.ModuleConcatenationPlugin()
? new webpack.optimize.ModuleConcatenationPlugin()
: null,

// make everything that is pointed from 2 and more places a chunk
Expand Down

0 comments on commit c07016f

Please sign in to comment.