extra-watch-webpack-plugin
v1.0.3
Published
extra-watch-webpack-plugin would help you to attach extra files or dirs to webpack's watch system
Downloads
106,936
Readme
npm install --save extra-watch-webpack-plugin
files
:string
(absolute path or glob pattern) orarray
, default[]
, attach extra files to webpack's watch systemdirs
:string
orarray
, default[]
, attach extra dirs to webpack's watch system
// webpack.config.js
import ExtraWatchWebpackPlugin from 'extra-watch-webpack-plugin';
......
{
plugins: [
new ExtraWatchWebpackPlugin({
files: [ 'path/to/file', 'src/**/*.json' ],
dirs: [ 'path/to/dir' ],
}),
],
}