我正在尝试这样做,如果未指定--theme标志,它将停止gulp任务,并想知道以DRY方式执行该任务的最佳方法。

我希望如果未指定--theme则停止每个单独的任务,并且如果不满足要求也让默认任务停止。

到目前为止,我已经尝试了一些没有运气的事情。

谢谢,

gulp.task('test', function() {

    if(typeof(args.theme) == 'undefined' || args.theme === true) {
        console.log(msg.noTheme);
        return; // end task
    }

    // run rest of task...

});

gulp.task('test-2', function() {

    if(typeof(args.theme) == 'undefined' || args.theme === true) {
        console.log(msg.noTheme);
        return; // end task
    }

    // run rest of task...

});

gulp.task('default', ['test-1', 'test-2']);

最佳答案

您只需使用以下命令即可停止脚本:

process.exit()

关于javascript - 如果满足条件,则停止Gulp任务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28485162/

10-16 21:02