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 Versions

1

2.0.2

Diff

Changelog

Source

2.0.2 (2016-01-25)

<a name="2.0.1"></a>

tomchentw
published 2.0.1 •

Changelog

Source

2.0.1 (2016-01-22)

<a name="2.0.0"></a>

tomchentw
published 2.0.0 •

Changelog

Source

2.0.0 (2016-01-22)

Features

  • src: rewrite in ES2015 format (9a61f21)

BREAKING CHANGES

  • src: Removes commonjs module support.

Before:

// webpack.config.js
var UnusedFilesWebpackPlugin = require("unused-files-webpack-plugin");

After:

In ES2015 module format:

import UnusedFilesWebpackPlugin from "unused-files-webpack-plugin";
// it's the same as
import { default as UnusedFilesWebpackPlugin } from "unused-files-webpack-plugin";
// You could access from named export as well.
import { UnusedFilesWebpackPlugin } from "unused-files-webpack-plugin";

If you still use commonjs:

var UnusedFilesWebpackPlugin = require("unused-files-webpack-plugin").default;
// or named export
var UnusedFilesWebpackPlugin = require("unused-files-webpack-plugin").UnusedFilesWebpackPlugin;
// with destructive assignment
var { UnusedFilesWebpackPlugin } = require("unused-files-webpack-plugin");

<a name"1.3.0"></a>

tomchentw
published 1.3.0 •

Changelog

Source

1.3.0 (2015-09-07)

Features
  • options: add failOnUnused to enable generating error (7b7620d8, closes #3)

<a name"1.2.0"></a>

tomchentw
published 1.2.0 •

Changelog

Source

1.2.0 (2015-07-11)

Features
  • globOptions: makes ignore option overidable (6b630944, closes #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)

tomchentw
published 1.1.0 •

Changelog

Source

1.1.0 (2015-05-22)

Bug Fixes
  • UnusedFilesWebpackPlugin:
    • use objectAssign for default values (f8a2b6f2)
    • include emitted assets in fileDepsMap (896e8e23)
tomchentw
published 1.0.0 •

Changelog

Source

1.0.0 (2015-05-22)

Features
  • UnusedFilesWebpackPlugin: use glob to select files (f8e081e8)
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