Skip to content

Commit 2c8637c

Browse files
authored
chore(release): 3.0.2 (jantimon#867)
1 parent 985654c commit 2c8637c

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
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.
44

5+
<a name="3.0.2"></a>
6+
## [3.0.2](https://github.com/jantimon/html-webpack-plugin/compare/v3.0.1...v3.0.2) (2018-03-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **query-loader:** In case no query is provided, return an empty object. This fixes #727 ([7587754](https://github.com/jantimon/html-webpack-plugin/commit/7587754))
12+
13+
514

615
<a name="3.0.1"></a>
716
## [3.0.1](https://github.com/jantimon/html-webpack-plugin/compare/v3.0.0...v3.0.1) (2018-03-01)

lib/loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = function (source) {
2424
// The following part renders the tempalte with lodash as aminimalistic loader
2525
//
2626
// Get templating options
27-
const options = this.query !== '' ? loaderUtils.parseQuery(this.query) : {};
27+
const options = this.query !== '' ? loaderUtils.parseQuery(this.query) : {};
2828
// Webpack 2 does not allow with() statements, which lodash templates use to unwrap
2929
// the parameters passed to the compiled template inside the scope. We therefore
3030
// need to unwrap them ourselves here. This is essentially what lodash does internally

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html-webpack-plugin",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"license": "MIT",
55
"description": "Simplifies creation of HTML files to serve your webpack bundles",
66
"author": "Charles Blaxland <[email protected]> (https://github.com/ampedandwired)",

0 commit comments

Comments
 (0)