-
Notifications
You must be signed in to change notification settings - Fork 73
Notification does not show after watch task fails #24
Comments
Do you ever see notifications, or are they just not showing up when using Here's a simple test to see if notifications work... Add this to your notify: {
test: {
options: {
title: 'Hello world',
message: 'fcanache sees notifications!'
}
} First try this on the command line:
That should show that notification. If that doesn't work then there's something wrong with your notification system setup. If it does work then change your watch: {
scripts: {
files: ['js/src/**/*'],
tasks: ['notify:test', 'test'],
options: {
spawn: false
}
}
} And see if notifications show when you make changes. BTW - what does |
Thanks for the response! So, I followed your suggestions and everything worked ok. I was able to get a notification that said: "fcanache sees notifications!". Actually, what I was actually trying to get working was ... right after my Thanks, |
I just released |
Wanted to chime in that I am having the same issue using the latest version. Specific notifications work but I don't get any error notifications (Growl on Windows). The following is an example of a watch task which if it compiles fine I get the notice I point to, otherwise the error only prints to command line and not Growl. watch: {
css: {
options: {
spawn: false
},
files: [
'assets/css/**/*.less'
],
tasks: [
'less:all',
'notify:css'
]
}
} |
Here the problem is in
|
Yes, makes sense. It would be nice if the two could somehow work together but this is helpful. Thanks. |
Hello! I just created new thread for latest issue: #39 |
I have a simple watch task that runs all my tests when a change is detected on my source code. Not sure why, but after the watch finish running all my tests and a failure is detected ... the expected notification does not show up.
the setup of my watch is:
and for the notification I am using the basic default config.
Any help or hint here would great,
Thanks,
The text was updated successfully, but these errors were encountered: