├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── dub.json ├── examples └── watch │ ├── .gitignore │ ├── dub.json │ └── source │ └── app.d ├── source └── fswatch.d ├── test.bat └── test.sh /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/dub.json -------------------------------------------------------------------------------- /examples/watch/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /examples/watch/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/examples/watch/dub.json -------------------------------------------------------------------------------- /examples/watch/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/examples/watch/source/app.d -------------------------------------------------------------------------------- /source/fswatch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/source/fswatch.d -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/test.bat -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebFreak001/FSWatch/HEAD/test.sh --------------------------------------------------------------------------------