Skip to content

Commit 91f9b5b

Browse files
fix notify default
according to the documentation notify is on by default. i think it is a good default. this enables it again :-)
1 parent f7a879d commit 91f9b5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/node-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var devArgs = process.argv.slice(2, scriptIndex);
3232

3333
var opts = minimist(devArgs, {
3434
boolean: ['all-deps', 'deps', 'dedupe', 'poll', 'respawn', 'notify'],
35-
default: { deps: true },
35+
default: { deps: true, notify: true },
3636
unknown: function (arg) {
3737
nodeArgs.push(arg);
3838
}

0 commit comments

Comments
 (0)