css-hot-loader
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,5 @@ | ||
### 1.1.1 / 2017-05-18 | ||
- Use loaderUtils.stringifyRequest to fix error path on windows [!6](https://github.com/shepherdwind/css-hot-loader/pull/6) by @dannsam | ||
### 1.1.0 / 2017-05-14 | ||
@@ -8,2 +12,3 @@ | ||
- IE11 compatibility [!2](https://github.com/shepherdwind/css-hot-loader/pull/2) | ||
by @extronics | ||
@@ -10,0 +15,0 @@ ### 1.0.2 / 2017-04-05 |
@@ -16,3 +16,3 @@ const loaderUtils = require('loader-utils'); | ||
// ${Date.now()} | ||
const cssReload = require('${require.resolve('./hotModuleReplacement')}')(${JSON.stringify(options)}); | ||
const cssReload = require(${loaderUtils.stringifyRequest(this, require.resolve('./hotModuleReplacement'))})(${JSON.stringify(options)}); | ||
module.hot.dispose(cssReload); | ||
@@ -19,0 +19,0 @@ module.hot.accept(undefined, cssReload); |
{ | ||
"name": "css-hot-loader", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "css hot reload work with extract-text-webpack-plugin", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -72,3 +72,3 @@ ### CSS Hot Loader | ||
Option to define you css file reload rule. | ||
Option to define you css file reload rule. Since 1.1.0 . | ||
@@ -75,0 +75,0 @@ For example `'css-hot-loader?fileMap='../css/{fileName}'` , which mean |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8645