Migrate gulp.start function to Gulp v4(将 gulp.start 函数迁移到 Gulp v4)
问题描述
我一直在将我所有的 gulp v3 代码库迁移到 v4.但是我被困在我有 gulp start 功能的地方,当我在 gulp v4 中运行 gulp start 时它会抛出一个错误.
I have been migrating all of my gulp v3 code bases into v4. However I'm stuck at a point where I have gulp start function and it throws me an error when I run gulp start in gulp v4.
这是我在版本 3 中的功能:
This is the function I had in version 3:
gulp.task('default', ['watch'], function () {
gulp.start('styles', 'scripts', 'images');
});
当迁移到 gulp v4 时,我实现了这个功能:
When migrating to v4 of gulp I implemented this function:
gulp.task('default', gulp.parallel('watch', function(done) {
gulp.start('styles', 'scripts', 'images');
done();
}));
如何使用新的 gulp 版本完成相同的过程?我需要在 gulp.series
中使用 gulp.parallel
吗?
How to accomplish the same process with the new gulp version? Do I need to use gulp.parallel
inside gulp.series
?
推荐答案
把你的任务改成函数后,简单使用;
After changing your tasks to functions, simply use;
gulp.task('default', gulp.series (watch, gulp.parallel(styles, scripts, images),
function (done) { done(); }
));
watch 函数将首先运行,然后是样式、脚本和图像函数并行运行.
The watch function will run first, then the styles, scripts and images functions in parallel.
来自 gulp.series 文档:
组合的嵌套深度没有强加限制使用 series() 和 parallel() 进行操作.
There are no imposed limits on the nesting depth of composed operations using series() and parallel().
这篇关于将 gulp.start 函数迁移到 Gulp v4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 gulp.start 函数迁移到 Gulp v4
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01