diff --git a/CHANGELOG.md b/CHANGELOG.md index 732d868..bd709da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change History ============== +v2.15.0 +---- +* Add full unit test coverage for the webpack 2 beta version +* For webpack 2 the default sort will be 'dependency' instead of 'id' +* Upgrade dependencies + v2.14.0 ---- * Export publicPath to the template diff --git a/examples/default/dist/webpack-1/bundle.js b/examples/default/dist/webpack-1/bundle.js index 21ab8de..bc576be 100644 --- a/examples/default/dist/webpack-1/bundle.js +++ b/examples/default/dist/webpack-1/bundle.js @@ -363,7 +363,6 @@ function applyToTag(styleElement, obj) { var css = obj.css; var media = obj.media; - var sourceMap = obj.sourceMap; if(media) { styleElement.setAttribute("media", media) @@ -381,7 +380,6 @@ function updateLink(linkElement, obj) { var css = obj.css; - var media = obj.media; var sourceMap = obj.sourceMap; if(sourceMap) { diff --git a/package.json b/package.json index 0b69db3..c67c5c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-webpack-plugin", - "version": "2.14.0", + "version": "2.15.0", "description": "Simplifies creation of HTML files to serve your webpack bundles", "main": "index.js", "files": [ @@ -43,7 +43,7 @@ "jasmine": "^2.4.1", "rimraf": "^2.5.2", "semistandard": "^7.0.5", - "style-loader": "^0.13.0", + "style-loader": "^0.13.1", "underscore-template-loader": "^0.7.2", "url-loader": "^0.5.7", "webpack": "^1.12.14", @@ -51,8 +51,8 @@ }, "dependencies": { "bluebird": "^3.3.4", - "html-minifier": "^1.2.0", - "loader-utils": "^0.2.12", + "html-minifier": "^1.3.1", + "loader-utils": "^0.2.13", "lodash": "^4.6.1", "pretty-error": "^2.0.0", "toposort": "^0.2.12"