From 4869770570e12a65ac131693ef3d1d921695feb1 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 11 May 2017 23:55:45 +0430 Subject: [PATCH] remove unneeded renderPlugins calls --- lib/build.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/build.js b/lib/build.js index b5c23170e4..fb0208842b 100644 --- a/lib/build.js +++ b/lib/build.js @@ -110,7 +110,6 @@ export function options () { const manifest = fs.readFileSync(manifestPath, 'utf8') createRenderer.call(this, JSON.parse(bundle), JSON.parse(manifest)) addAppTemplate.call(this) - this.module.renderPlugins.call(this.module) } } } @@ -151,7 +150,6 @@ function * buildFiles () { yield webpackRunClient.call(this) yield webpackRunServer.call(this) addAppTemplate.call(this) - this.module.renderPlugins.call(this.module) } }