Write changelog

This commit is contained in:
Jan Nicklas 2016-03-29 18:14:03 +02:00
parent 4ab5f1bdb1
commit a009406838
3 changed files with 10 additions and 6 deletions

View File

@ -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

View File

@ -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) {

View File

@ -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"