Skip to content Skip to sidebar Skip to footer

How To Debug Gulpfile.js

What is the proper way to execute node-inspector in order to be able to debug gulpfile.js? I've tried following (code in my gulpfile requires harmony and harmony-arrow-functions sw

Solution 1:

It looks like you're missing pointing to your actual gulpfile.js. Try something like this:

node-debug /path/to/your/gulp/install/gulp.js--harmony--harmony-arrow-functions--gulpfile /path/to/your/gulpfile/gulpfile.js default

I use this and it works.

Post a Comment for "How To Debug Gulpfile.js"