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

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

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

      1. <tfoot id='q1pvN'></tfoot>

        gulp.run 已弃用.如何编写任务?

        时间:2023-05-29

            1. <legend id='rm8DA'><style id='rm8DA'><dir id='rm8DA'><q id='rm8DA'></q></dir></style></legend>
            2. <tfoot id='rm8DA'></tfoot>

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

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

                  <bdo id='rm8DA'></bdo><ul id='rm8DA'></ul>
                    <tbody id='rm8DA'></tbody>
                • 本文介绍了gulp.run 已弃用.如何编写任务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  这是一个组合任务,我不知道如何用任务依赖项替换它.

                  Here is a composed task I don't know how to replace it with task dependencies.

                  ...
                  gulp.task('watch', function () {
                   var server = function(){
                    gulp.run('jasmine');
                    gulp.run('embed');
                   };
                   var client = function(){
                    gulp.run('scripts');
                    gulp.run('styles');
                    gulp.run('copy');
                    gulp.run('lint');
                   };
                   gulp.watch('app/*.js', server);
                   gulp.watch('spec/nodejs/*.js', server);
                   gulp.watch('app/backend/*.js', server);
                   gulp.watch('src/admin/*.js', client);
                   gulp.watch('src/admin/*.css', client);
                   gulp.watch('src/geojson-index.json', function(){
                    gulp.run('copygeojson');
                   });
                  });
                  

                  对应的变更日志https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md#35 [弃用 gulp.run]

                  The corresponding changelog https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md#35 [deprecate gulp.run]

                  推荐答案

                  gulp.task('watch', function () {
                    var server = ['jasmine', 'embed'];
                    var client = ['scripts', 'styles', 'copy', 'lint'];
                    gulp.watch('app/*.js', server);
                    gulp.watch('spec/nodejs/*.js', server);
                    gulp.watch('app/backend/*.js', server);
                    gulp.watch('src/admin/*.js', client);
                    gulp.watch('src/admin/*.css', client);
                    gulp.watch('src/geojson-index.json', ['copygeojson']);
                  });
                  

                  您不再需要传递函数(尽管您仍然可以)来运行任务.你可以给 watch 一个任务名称数组,它会为你做这件事.

                  You no longer need to pass a function (though you still can) to run tasks. You can give watch an array of task names and it will do this for you.

                  这篇关于gulp.run 已弃用.如何编写任务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何为 gulp 组成管道序列? 下一篇:每次 Gulpfile 更改后如何重新启动 Gulp?

                  相关文章

                  最新文章

                • <small id='DUUac'></small><noframes id='DUUac'>

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