如何调试gulpfile.js文件
1个回答
展开全部
gulp 其实也是 node 程序,如何debug node 就能如何debug gulp
1.安装 node-inspector
npm install -g node-inspector
2.使用node debug
node-debug $(which gulp) myTask
3.根据提示信息 访问 chrome 就行
另外你如果需要暂停你的gulp程序,需要在 gulpfile.js中加入 debugger;
gulp.task('myTask', function() {
debugger;
gulp
.src('myPath/files/**/*')
.pipe(someAction())
.pipe(gulp.dest('newPath/files'));
});
1.安装 node-inspector
npm install -g node-inspector
2.使用node debug
node-debug $(which gulp) myTask
3.根据提示信息 访问 chrome 就行
另外你如果需要暂停你的gulp程序,需要在 gulpfile.js中加入 debugger;
gulp.task('myTask', function() {
debugger;
gulp
.src('myPath/files/**/*')
.pipe(someAction())
.pipe(gulp.dest('newPath/files'));
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询