├── .gitignore ├── .npmignore ├── .wr ├── Makefile ├── README.md ├── bin └── wr ├── lib-src ├── Executor.coffee ├── FileSet.coffee ├── FileWatcher.coffee ├── command.coffee └── wr.coffee ├── lib ├── Executor.js ├── FileSet.js ├── FileWatcher.js ├── command.js └── wr.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git* 3 | Makefile 4 | test/ 5 | -------------------------------------------------------------------------------- /.wr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/.wr -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/README.md -------------------------------------------------------------------------------- /bin/wr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/bin/wr -------------------------------------------------------------------------------- /lib-src/Executor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib-src/Executor.coffee -------------------------------------------------------------------------------- /lib-src/FileSet.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib-src/FileSet.coffee -------------------------------------------------------------------------------- /lib-src/FileWatcher.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib-src/FileWatcher.coffee -------------------------------------------------------------------------------- /lib-src/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib-src/command.coffee -------------------------------------------------------------------------------- /lib-src/wr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib-src/wr.coffee -------------------------------------------------------------------------------- /lib/Executor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib/Executor.js -------------------------------------------------------------------------------- /lib/FileSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib/FileSet.js -------------------------------------------------------------------------------- /lib/FileWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib/FileWatcher.js -------------------------------------------------------------------------------- /lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib/command.js -------------------------------------------------------------------------------- /lib/wr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/lib/wr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmuellr/wr/HEAD/package.json --------------------------------------------------------------------------------