Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow passing '.' for watch directory. Fix file/stat references #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

adamcohen
Copy link

If you pass '.' as the watchDirectory, chokidar will ignore all files if you've set watchIgnoreDotFiles to true (which is the default). This tripped me up after the Switch to Chokidar commit was merged, since none of my file changes was causing forever-monitor to restart my app. See here for more details. This fixes that issue. Also, the watch:restart event had the file/stat variables mixed up, which I've fixed.

@@ -11,7 +11,7 @@ You can also use forever from inside your own node.js code.
var child = new (forever.Monitor)('your-filename.js', {
max: 3,
silent: true,
args: []
args: ['--color']
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To help others figure out how to enable color support. See here for details

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants