├── .babelrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .mocharc.json ├── .npmignore ├── README.md ├── package.json ├── src ├── index.js └── index.test.js └── test ├── file.exclude.js ├── file.include.js ├── main.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib 3 | test/output 4 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | .* 4 | mocha.opts 5 | **/*.test.js 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/src/index.test.js -------------------------------------------------------------------------------- /test/file.exclude.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/file.include.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fridus/webpack-watch-files-plugin/HEAD/test/webpack.config.js --------------------------------------------------------------------------------