├── .ci ├── cache.yml ├── copy-install.yml ├── package.json ├── prepare-cache.yml └── use-esy.yml ├── .gitignore ├── README.md ├── azure-pipelines.yml ├── esy.json ├── files ├── all-windows.sh ├── build-windows.sh ├── patch-windows.patch └── prepare-windows.sh ├── test.sh └── windows.json /.ci/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/.ci/cache.yml -------------------------------------------------------------------------------- /.ci/copy-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/.ci/copy-install.yml -------------------------------------------------------------------------------- /.ci/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/.ci/package.json -------------------------------------------------------------------------------- /.ci/prepare-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/.ci/prepare-cache.yml -------------------------------------------------------------------------------- /.ci/use-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/.ci/use-esy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test_dir 2 | _esy 3 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/esy.json -------------------------------------------------------------------------------- /files/all-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/files/all-windows.sh -------------------------------------------------------------------------------- /files/build-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/files/build-windows.sh -------------------------------------------------------------------------------- /files/patch-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/files/patch-windows.patch -------------------------------------------------------------------------------- /files/prepare-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/files/prepare-windows.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/test.sh -------------------------------------------------------------------------------- /windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/esy-fswatch/HEAD/windows.json --------------------------------------------------------------------------------