From 0552f76922452203a9765bd8aa371393b9fe09a2 Mon Sep 17 00:00:00 2001 From: ev1stensberg Date: Thu, 30 May 2019 18:31:50 +0200 Subject: [PATCH] fix: remove type from inherited type --- packages/generators/init-generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/generators/init-generator.ts b/packages/generators/init-generator.ts index 8997c3f66e5..dbaa16c6058 100644 --- a/packages/generators/init-generator.ts +++ b/packages/generators/init-generator.ts @@ -228,7 +228,7 @@ export default class InitGenerator extends Generator { if(!this.isProd) { this.dependencies.push("html-webpack-plugin"); const htmlWebpackDependency: string = "html-webpack-plugin"; - const htmlwebpackPlugin: string = generatePluginName(htmlWebpackDependency); + const htmlwebpackPlugin = generatePluginName(htmlWebpackDependency); (this.configuration.config.topScope as string[]).push( `const ${htmlwebpackPlugin} = require('${htmlWebpackDependency}')`, "\n",