Skip to content

Commit

Permalink
feat: watch script regardless of extension
Browse files Browse the repository at this point in the history
Fixes the issue where express is a js based project, but the executable
is `www`, so it misses on the match. So now nodemon will watch for
matching extensions but *also* the script the user gave.

Fixes #461

Note that this can't handle the situation where npm is used to run `node
./bin/www` as nodemon can't split out a package script command.
  • Loading branch information
remy committed Dec 15, 2017
1 parent 30f999a commit f8a5abe
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion lib/monitor/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ function resetWatchers() {
watchers = [];
}


function watch() {
if (watchers.length) {
debug('early exit on watch, still watching (%s)', watchers.length);
Expand Down Expand Up @@ -141,6 +140,22 @@ function filterAndRestart(files) {
undefsafe(config, 'options.execOptions.ext')
);

// if there's no matches, then test to see if the changed file is the
// running script, if so, let's allow a restart
const script = path.resolve(config.options.execOptions.script);
if (matched.result.length === 0 && script) {
const length = script.length;
files.find(file => {
if (file.substr(-length, length) === script) {
matched = {
result: [ file ],
total: 1,
}
return true;
}
})
}

utils.log.detail('changes after filters (before/after): ' +
[files.length, matched.result.length].join('/'));

Expand Down

0 comments on commit f8a5abe

Please sign in to comment.