From d4eb1c749316af3964126606fe6c70a233c30fef Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Sun, 17 Feb 2019 15:51:06 +0100 Subject: [PATCH] fix: Drop @types/webpack dependency --- package.json | 1 - typings.d.ts | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index 9dd600e0..1de2d89c 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,6 @@ "@types/loader-utils": "1.1.3", "@types/node": "10.11.4", "@types/tapable": "1.0.4", - "@types/webpack": "^4.0.0", "appcache-webpack-plugin": "^1.4.0", "commitizen": "3.0.2", "css-loader": "^1.0.0", diff --git a/typings.d.ts b/typings.d.ts index c26e02b6..a3c3a619 100644 --- a/typings.d.ts +++ b/typings.d.ts @@ -1,10 +1,9 @@ -import { Plugin } from "webpack"; import { AsyncSeriesWaterfallHook } from "tapable"; import { Options as HtmlMinifierOptions } from "html-minifier"; export = HtmlWebpackPlugin; -declare class HtmlWebpackPlugin extends Plugin { +declare class HtmlWebpackPlugin { constructor(options?: HtmlWebpackPlugin.Options); }