remove unneeded renderPlugins calls

This commit is contained in:
Pooya Parsa 2017-05-11 23:55:45 +04:30
parent b701424aae
commit 4869770570

View File

@ -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)
}
}