├── .gitattributes ├── .gitignore ├── Makefile ├── Readme.md ├── bin └── watch ├── package.json └── test ├── deep └── nesting.js └── index.js /.gitattributes: -------------------------------------------------------------------------------- 1 | bin/watch text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | assets 3 | test -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/queckezz/watch-run/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/queckezz/watch-run/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/queckezz/watch-run/HEAD/bin/watch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/queckezz/watch-run/HEAD/package.json -------------------------------------------------------------------------------- /test/deep/nesting.js: -------------------------------------------------------------------------------- 1 | 2 | console.log('deep nesting') -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | console.log('demo file') --------------------------------------------------------------------------------