Files
archived-nodemon/bin/nodemon.js
Remy Sharp cc44b58641 Fixed extension watching and fixed perf bug in check
Needs careful testing in linux and windows.

Also fixed #204 but requires config file to set `restartable` to false, since there's so many options to configure stdin and this particular case has narrow use.
2013-10-31 00:25:36 +00:00

19 lines
468 B
JavaScript
Executable File

#!/usr/bin/env node
var cli = require('../lib/cli'),
nodemon = require('../lib/');
// updateNotifier = require('update-notifier'),
// checks for available update and returns an instance
// notifier = updateNotifier({
// packagePath: '../'
// });
// if (notifier.update) {
// // notify using the built-in convenience method
// notifier.notify();
// }
var options = cli.parse(process.argv);
options.restartable = 'rs';
nodemon(options);