webpack-watch-files-plugin
webpack-watch-files-plugin copied to clipboard
How to watch nested directories
I realized that this package doesn't work with nested directories. To fix this, I have to write it like this, is there any other solution how I can simplify this?
new WatchExternalFilesPlugin({
files: [
"./src/**/**/*",
"./src/**/*",
"./src/*",
"./public/**/**/*",
"./public/**/*",
"./public/*",
]
})