diff --git a/CHANGELOG.md b/CHANGELOG.md index feff45ee..2a0408af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [4.0.3](https://github.com/jantimon/html-webpack-plugin/compare/v4.0.2...v4.0.3) (2020-03-28) + + +### Bug Fixes + +* add webpack, tapable and html-minifier-terser as dependencies because of types.d.ts ([238da81](https://github.com/jantimon/html-webpack-plugin/commit/238da8123950f87267954fd448f3e6b0fb1ead17)) + + + ## [4.0.2](https://github.com/jantimon/html-webpack-plugin/compare/v4.0.1...v4.0.2) (2020-03-26) diff --git a/package.json b/package.json index 3705682f..2d3bc932 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-webpack-plugin", - "version": "4.0.2", + "version": "4.0.3", "license": "MIT", "description": "Simplifies creation of HTML files to serve your webpack bundles", "author": "Jan Nicklas (https://github.com/jantimon)", @@ -28,10 +28,8 @@ ] }, "devDependencies": { - "@types/html-minifier-terser": "5.0.0", "@types/loader-utils": "1.1.3", "@types/node": "11.13.9", - "@types/tapable": "1.0.4", "appcache-webpack-plugin": "1.4.0", "commitizen": "4.0.3", "css-loader": "2.1.1", @@ -52,6 +50,9 @@ "webpack-recompilation-simulator": "3.0.0" }, "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", "html-minifier-terser": "^5.0.1", "loader-utils": "^1.2.3", "lodash": "^4.17.15",