webpack-watch-external-files-plugin
v4.0.0
Published
Webpack plugin to watch external files
Maintainers
Readme
Install
npm install webpack-watch-external-files-plugin --save-dev
# or
yarn add webpack-watch-external-files-plugin --devUsage
// 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: [],
});- files[
list<string>] - a list of files or glob patterns
