├── .gitignore ├── Gulpfile.js ├── LICENSE-MIT ├── README.md ├── index.coffee ├── index.js ├── package.json └── test └── fixture └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/README.md -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/index.coffee -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leny/gulp-supervisor/HEAD/test/fixture/server.js --------------------------------------------------------------------------------