Skip to content

Commit

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

0 comments on commit 960e73a

Please sign in to comment.