Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: remove type from inherited type
  • Loading branch information
evenstensberg committed May 30, 2019
1 parent 88fcfa8 commit 0552f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/generators/init-generator.ts
Expand Up @@ -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",
Expand Down

0 comments on commit 0552f76

Please sign in to comment.