Skip to content

Commit 0552f76

Browse files
committedMay 30, 2019
fix: remove type from inherited type
1 parent 88fcfa8 commit 0552f76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/generators/init-generator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export default class InitGenerator extends Generator {
228228
if(!this.isProd) {
229229
this.dependencies.push("html-webpack-plugin");
230230
const htmlWebpackDependency: string = "html-webpack-plugin";
231-
const htmlwebpackPlugin: string = generatePluginName(htmlWebpackDependency);
231+
const htmlwebpackPlugin = generatePluginName(htmlWebpackDependency);
232232
(this.configuration.config.topScope as string[]).push(
233233
`const ${htmlwebpackPlugin} = require('${htmlWebpackDependency}')`,
234234
"\n",

0 commit comments

Comments
 (0)
Please sign in to comment.