I have a grunt task that kicks off a socket-io server among other things.
I have found a way of keeping the task 'open' (ie, not exiting straight away on the command line) by running the 'watch' task right after it. e.g
grunt.registerTask('default', ["mytask", "watch"]);
But this requires me to fill in some dummy data in the Gruntfile such as.
// Not needed...
watch: {
files: "test/*"
},
So is there a way to keep my task running without having to use the watch task along with it?
Thanks