diff --git a/HISTORY.md b/HISTORY.md index 2caf46f..56caa38 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +0.2.1 - 2016/5/31 +---------------------- +add: forceReletive + 0.2.0 - 2016/5/26 ---------------------- refactor: add params hash and xFixAssets diff --git a/README.md b/README.md index 018c3cc..49e6961 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,8 @@ Add new plugin instance to your `webpack` config }, ignore: ['dist/**/*.html','coverage/**/*.html'], xFixAssets: false, - hash: true + hash: true, + forceRelative: true }) ] }); @@ -49,7 +50,7 @@ The plugin accepts the following options: - ignore: pass through to glob - xFixAssets: do not fix assets paths in html but fix hash - hash: fix assets with hash paths in html - +- forceRelative: absolute path in html would regard as relative, USED FOR publicPath ### License MIT diff --git a/package.json b/package.json index bb4f5fc..5cfa2e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-repath-webpack-plugin", - "version": "0.2.0", + "version": "0.2.1", "description": "manage html output path by this plugin", "main": "index.js", "scripts": {