unused-files-webpack-plugin
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -0,1 +1,20 @@ | ||
<a name"1.2.0"></a> | ||
## 1.2.0 (2015-07-11) | ||
#### Features | ||
* **globOptions:** makes ignore option overidable ([6b630944](https://github.com/tomchentw/unused-files-webpack-plugin/commit/6b630944), closes [#1](https://github.com/tomchentw/unused-files-webpack-plugin/issues/1)) | ||
#### Breaking Changes | ||
* globOptions.ignore is now overridable | ||
If you choose to override globOptions with new ignore option, | ||
make sure you'll include `node_modules/**/*` for the new ignore. | ||
([6b630944](https://github.com/tomchentw/unused-files-webpack-plugin/commit/6b630944)) | ||
## 1.1.0 (2015-05-22) | ||
@@ -2,0 +21,0 @@ |
@@ -12,4 +12,5 @@ "use strict"; | ||
var globOptions = this.globOptions = options.globOptions || {}; | ||
globOptions.ignore = "node_modules/**/*"; | ||
var globOptions = this.globOptions = objectAssign({ | ||
ignore: "node_modules/**/*" | ||
}, options.globOptions); | ||
} | ||
@@ -16,0 +17,0 @@ |
{ | ||
"__template__gist__": "https://gist.github.com/tomchentw/368a93bb748ad9d576f1#file-package-json", | ||
"name": "unused-files-webpack-plugin", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Glob all files that are not compiled by webpack under webpack's context", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "echo 'build script' && exit 0", | ||
"test": "exit 1" | ||
@@ -33,3 +34,3 @@ }, | ||
"devDependencies": { | ||
"tomchentw-npm-dev": "^1.2.0" | ||
"tomchentw-npm-dev": "^3.0.0" | ||
}, | ||
@@ -36,0 +37,0 @@ "dependencies": { |
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
10557
54