<i id='RBIXe'><tr id='RBIXe'><dt id='RBIXe'><q id='RBIXe'><span id='RBIXe'><b id='RBIXe'><form id='RBIXe'><ins id='RBIXe'></ins><ul id='RBIXe'></ul><sub id='RBIXe'></sub></form><legend id='RBIXe'></legend><bdo id='RBIXe'><pre id='RBIXe'><center id='RBIXe'></center></pre></bdo></b><th id='RBIXe'></th></span></q></dt></tr></i><div id='RBIXe'><tfoot id='RBIXe'></tfoot><dl id='RBIXe'><fieldset id='RBIXe'></fieldset></dl></div>

  • <legend id='RBIXe'><style id='RBIXe'><dir id='RBIXe'><q id='RBIXe'></q></dir></style></legend>

    <tfoot id='RBIXe'></tfoot>

    <small id='RBIXe'></small><noframes id='RBIXe'>

      <bdo id='RBIXe'></bdo><ul id='RBIXe'></ul>

      1. 如果满足条件,则停止 Gulp 任务

        时间:2023-05-28

        <small id='i9Trm'></small><noframes id='i9Trm'>

            • <legend id='i9Trm'><style id='i9Trm'><dir id='i9Trm'><q id='i9Trm'></q></dir></style></legend>
                  <tbody id='i9Trm'></tbody>
                <tfoot id='i9Trm'></tfoot>
                  <bdo id='i9Trm'></bdo><ul id='i9Trm'></ul>

                • <i id='i9Trm'><tr id='i9Trm'><dt id='i9Trm'><q id='i9Trm'><span id='i9Trm'><b id='i9Trm'><form id='i9Trm'><ins id='i9Trm'></ins><ul id='i9Trm'></ul><sub id='i9Trm'></sub></form><legend id='i9Trm'></legend><bdo id='i9Trm'><pre id='i9Trm'><center id='i9Trm'></center></pre></bdo></b><th id='i9Trm'></th></span></q></dt></tr></i><div id='i9Trm'><tfoot id='i9Trm'></tfoot><dl id='i9Trm'><fieldset id='i9Trm'></fieldset></dl></div>
                  本文介绍了如果满足条件,则停止 Gulp 任务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

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

                  I am trying to make it so if a --theme flag isn't specified it stops the gulp task and wondering the best way to do it in a DRY way.

                  如果未指定 --theme,我希望每个单独的任务停止,并且如果未满足,我希望默认任务停止.

                  I would like each individual task to stop if a --theme isn't specified and also have the default task stop if it isn't met.

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

                  I have tried a few things with no luck so far.

                  谢谢,

                  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']);
                  

                  推荐答案

                  您可以简单地停止脚本:

                  You can simply stop the script with:

                  process.exit()
                  

                  这篇关于如果满足条件,则停止 Gulp 任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Gulp.js - 在连接时重写嵌入在 css 中的 url 下一篇:Gulp less 然后缩小任务

                  相关文章

                  最新文章

                  • <bdo id='dIdGn'></bdo><ul id='dIdGn'></ul>
                • <tfoot id='dIdGn'></tfoot>
                      <i id='dIdGn'><tr id='dIdGn'><dt id='dIdGn'><q id='dIdGn'><span id='dIdGn'><b id='dIdGn'><form id='dIdGn'><ins id='dIdGn'></ins><ul id='dIdGn'></ul><sub id='dIdGn'></sub></form><legend id='dIdGn'></legend><bdo id='dIdGn'><pre id='dIdGn'><center id='dIdGn'></center></pre></bdo></b><th id='dIdGn'></th></span></q></dt></tr></i><div id='dIdGn'><tfoot id='dIdGn'></tfoot><dl id='dIdGn'><fieldset id='dIdGn'></fieldset></dl></div>
                      <legend id='dIdGn'><style id='dIdGn'><dir id='dIdGn'><q id='dIdGn'></q></dir></style></legend>

                      <small id='dIdGn'></small><noframes id='dIdGn'>