gpt4 book ai didi

javascript - 这个 gulp 命令会等待依赖任务吗?

转载 作者:搜寻专家 更新时间:2023-11-01 00:21:20 26 4
gpt4 key购买 nike

我有以下 gulp 配置:

gulp.task('bar', function() {
return gulp.src(files, { base: './' })
.pipe(gulp.dest('dist'))
});


gulp.task('foo', ['bar'], function() {
// do something...
});

foo 会在运行之前等待 bar 完成吗?

最佳答案

根据文档 here :

An array of tasks to be executed and completed before your task will run.

是的,它会在运行任务之前完成。

另外,请注意以下注意事项。如果您的任务正在触发后台任务,并且没有正确返回,gulp 可能会错误地认为您的任务已完成。

Note: Are your tasks running before the dependencies are complete? Make sure your dependency tasks are correctly using the async run hints: take in a callback or return a promise or event stream.

关于javascript - 这个 gulp 命令会等待依赖任务吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43543221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com