Skip to content

Commit

Permalink
chore: fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
remy committed Feb 1, 2018
1 parent 79e61f0 commit 4cfd0b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/monitor/run.js
Expand Up @@ -263,8 +263,10 @@ function run(options) {
if (child.stdout) {
child.stdout.pipe(process.stdout);
} else {
utils.log.error(`running an unsupported version of node ${process.version}`);
utils.log.error('nodemon may not work as expected - please consider upgrading to LTS');
utils.log.error('running an unsupported version of node ' +
process.version);
utils.log.error('nodemon may not work as expected - ' +
'please consider upgrading to LTS');
}
}

Expand Down

0 comments on commit 4cfd0b9

Please sign in to comment.