grunt-debug v0.0.3
grunt-debug
A grunt task to enable debugging for any subsequent tasks.
Usage
Ensure you have the debug plugin enabled in your Gruntfile via:
grunt.loadNpmTasks('grunt-debug');Then you can debug a series of grunt tasks (say tasks named first and second) by running:
grunt debug first secondOr, to immediately pause the script after launching:
grunt debug:break first secondOptions
fork : Boolean
If enabled, spawns a new Grunt process with debugging enabled via Node's
--debugparameter. Otherwise, debugging will be enabled on the current process using theSIGUSR1signal. Defaults tofalse.debugChildren : Boolean
If enabled, automatically starts debugging for child node processes created using
forkorspawncommands. Defaults totrue.inspector : Boolean
If enabled, launches an instance of node-inspector for interactive debugging. In order to use this option, your parent project must declare a version of
node-inspectorin its dependencies. Defaults tofalse.inspectorArgs : Object
A map of argument values to use when launching
node-inspector. (Only applicable wheninspectoris set totrue.) Defaults to{}.
