assets-webpack-plugin
Advanced tools
Comparing version 6.0.5 to 6.0.6
@@ -8,4 +8,8 @@ # Change Log | ||
## 6.0.6 - 2020-11-13 | ||
* Adds [#311](https://github.com/ztoben/assets-webpack-plugin/pull/311) | ||
* Fixes issue where default path would not be set | ||
## 6.0.5 - 2020-11-13 | ||
* Adds [#301](https://github.com/ztoben/assets-webpack-plugin/pull/310) | ||
* Adds [#310](https://github.com/ztoben/assets-webpack-plugin/pull/310) | ||
@@ -12,0 +16,0 @@ ## 6.0.4 - 2020-11-13 |
@@ -34,3 +34,2 @@ 'use strict'; | ||
}, options); | ||
this.writer = createQueuedWriter(createOutputWriter(this.options)); | ||
} | ||
@@ -45,2 +44,3 @@ | ||
self.options.path = path.resolve(self.options.useCompilerPath ? compiler.options.output.path || '.' : self.options.path || '.'); | ||
self.writer = createQueuedWriter(createOutputWriter(self.options)); | ||
@@ -47,0 +47,0 @@ var emit = function emit(compilation, callback) { |
@@ -28,3 +28,2 @@ const fs = require('fs') | ||
}, options) | ||
this.writer = createQueuedWriter(createOutputWriter(this.options)) | ||
} | ||
@@ -43,2 +42,3 @@ | ||
) | ||
self.writer = createQueuedWriter(createOutputWriter(self.options)) | ||
@@ -45,0 +45,0 @@ const emit = (compilation, callback) => { |
{ | ||
"name": "assets-webpack-plugin", | ||
"version": "6.0.5", | ||
"version": "6.0.6", | ||
"description": "Emits a json file with assets paths", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
42240