From 960e73a47715cadbe2b850065b1ce0a4acf63a29 Mon Sep 17 00:00:00 2001 From: ev1stensberg Date: Thu, 30 May 2019 18:38:45 +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 dbaa16c6058..9d5b33f0b51 100644 --- a/packages/generators/init-generator.ts +++ b/packages/generators/init-generator.ts @@ -227,7 +227,7 @@ export default class InitGenerator extends Generator { } if(!this.isProd) { this.dependencies.push("html-webpack-plugin"); - const htmlWebpackDependency: string = "html-webpack-plugin"; + const htmlWebpackDependency = "html-webpack-plugin"; const htmlwebpackPlugin = generatePluginName(htmlWebpackDependency); (this.configuration.config.topScope as string[]).push( `const ${htmlwebpackPlugin} = require('${htmlWebpackDependency}')`,