├── .eslintrc ├── README.md ├── bin ├── browserify-patch-server └── cmd.js ├── compose.js ├── index.js ├── makePatch.js ├── makeWatcher.js ├── notify.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/.eslintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/README.md -------------------------------------------------------------------------------- /bin/browserify-patch-server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('./cmd'); 4 | -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/compose.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/index.js -------------------------------------------------------------------------------- /makePatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/makePatch.js -------------------------------------------------------------------------------- /makeWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/makeWatcher.js -------------------------------------------------------------------------------- /notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/notify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kureev/browserify-patch-server/HEAD/package.json --------------------------------------------------------------------------------