Socket
Socket
Sign inDemoInstall

extra-watch-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-watch-webpack-plugin

extra-watch-webpack-plugin would help you to attach extra files or dirs to webpack's watch system


Version published
Weekly downloads
28K
decreased by-0.76%
Maintainers
1
Weekly downloads
 
Created
Source

NPM version Build Status Build status Coverage Status Dependency Status Greenkeeper badge

extra watch webpack plugin

extra-watch-webpack-plugin would help you to attach extra files or dirs to webpack's watch system

support webpack@1,2,3,4

Install

npm install --save extra-watch-webpack-plugin

Options

  • files: string (absolute path or glob pattern) or array, default [], attach extra files to webpack's watch system
  • dirs: string or array, default [], attach extra dirs to webpack's watch system

Usage

// webpack.config.js
import ExtraWatchWebpackPlugin from 'extra-watch-webpack-plugin';
......
{
  plugins: [
    new ExtraWatchWebpackPlugin({
      files: [ 'path/to/file', 'src/**/*.json' ],
      dirs: [ 'path/to/dir' ],
    }),
  ],
}

Keywords

FAQs

Package last updated on 27 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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