Skip to content

v3.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Feb 03:08
· 5 commits to master since this release
b83be46

3.0.0 (2021-02-10)

Bug Fixes

  • Support webpack 5.x by reading source from file-system (b83be46)

BREAKING CHANGES

  • HtmlRenderPlugin exported as named and default variable. commonjs require statements will need to be changed as follows:
// old
const HtmlRenderPlugin = require('html-render-webpack-plugin');
// new
const { HtmlRenderPlugin } = require('html-render-webpack-plugin');