3.1.0 • Published 1 year ago

webpack-watch-external-files-plugin v3.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

npm bundlephobia Publish on NPM node-lts NPM

Install

npm install webpack-watch-external-files-plugin --save-dev
# or
yarn add webpack-watch-external-files-plugin --dev

Usage

// webpack.config.js:

const WatchExternalFilesPlugin = require('webpack-watch-external-files-plugin');

module.exports = {
  plugins: [
    new WatchExternalFilesPlugin({
      files: ['/path/**/*.js', '/path/tofile.txt', '!./src/**/*.json'],
    }),
  ],
};

Options

new WatchExternalFilesPlugin({
  files: [],
});