Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

unused-files-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unused-files-webpack-plugin - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

19

CHANGELOG.md

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

5

lib/index.js

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc