gpt4 book ai didi

javascript - 有什么方法可以查看 gulp watch 处理了哪些文件?

转载 作者:搜寻专家 更新时间:2023-10-31 23:11:53 25 4
gpt4 key购买 nike

我有这个 gulp 任务:

var abc = {
src: [
'app/**/abc.html',
'app/**/def.html'
],
};
gulp.task('watchHTMLs', function () {
gulp.watch(abc.src, function (file) {
return gulp.src(file.path, { base: process.cwd() })
.pipe(rename({ basename: 'base' }))
.pipe(gulp.dest('./'));
});
});

有什么方法可以让我看到运行 gulp 脚本的输出,显示更改了哪个文件?

像这样:

> cmd.exe /c gulp -b "C:\H\user\user" --color --gulpfile "C:\H\user\user\Gulpfile.js" watchHTMLs
[11:37:29] Using gulpfile C:\H\user\user\Gulpfile.js
[11:37:29] Starting 'watchHTMLs'...
[11:37:29] Finished 'watchHTMLs' after 60 ms

找到文件/app/xxx/abc.html找到文件/app/yyy/abc.html找到文件/app/xxx/def.html

最佳答案

看看gulp-print :

gulp.watch(abc.src, function (file) {
return gulp.src(file.path, { base: process.cwd() })
<b>.pipe(print(function (file) {
return "Found file "+file;
})</b>
.pipe(rename({ basename: 'base' }))
.pipe(gulp.dest('./'));
});

关于javascript - 有什么方法可以查看 gulp watch 处理了哪些文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36615928/

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