What is the proper way to execute node-inspector in order to be able to debug gulpfile.js?
node-inspector
gulpfile.js
I\'ve tried following (code in my gulpfile requi
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.