Skip to content

Commit

Permalink
chore: Merge branch 'master'
Browse files Browse the repository at this point in the history
* 'master' of github.com:remy/nodemon:
  docs: center logo (#1495)
  fix: `rs` in node@11 (#1493)
  • Loading branch information
remy committed Feb 6, 2019
2 parents df3e08d + 82c5c18 commit 16cb277
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,8 @@ cache:
notifications:
email: false
node_js:
- '9'
- '11'
- '10'
- '8'
- '6'
- '4'
Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,4 +1,6 @@
![nodemon logo](https://user-images.githubusercontent.com/13700/35731649-652807e8-080e-11e8-88fd-1b2f6d553b2d.png)
<p align="center">
<img src="https://user-images.githubusercontent.com/13700/35731649-652807e8-080e-11e8-88fd-1b2f6d553b2d.png" alt="Nodemon Logo">
</p>

# nodemon

Expand Down
4 changes: 4 additions & 0 deletions lib/monitor/run.js
Expand Up @@ -151,6 +151,10 @@ function run(options) {
});

child.on('exit', function (code, signal) {
if (child && child.stdin) {
process.stdin.unpipe(child.stdin);
}

if (code === 127) {
utils.log.error('failed to start process, "' + cmd.executable +
'" exec not found');
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -59,7 +59,7 @@
"debug": "^3.1.0",
"ignore-by-default": "^1.0.1",
"minimatch": "^3.0.4",
"pstree.remy": "^1.1.3",
"pstree.remy": "^1.1.6",
"semver": "^5.5.0",
"supports-color": "^5.2.0",
"touch": "^3.1.0",
Expand Down

0 comments on commit 16cb277

Please sign in to comment.