I am using WebStorm to run a grunt task. The debugger successfully stops at the breakpoint in the Gruntfile.js file, but not in my task file.
In the Gruntfile.js I regis
Try out grunt-debug-task.
Its similar to node debugger. Just run the grunt debug taskname
grunt debug taskname
I tried it out. It breaks sometimes but seems to work.