gulp4のgulp-watchでファイルのイベントやパスを取得する
gulp4でgulp-watchを使って更新しようと思ったら更新されなかった。
watchでは更新できるが、更新されたファイル名なんかを取れない(?)。
どっちかを諦めるべきなのか・・
公式にやり方が書いてあった。
gulp3
import gulp from 'gulp';
import watch from 'gulp-watch';
watch(souce, (file) => {
gulp.start(build);
console.log(file.event);
console.log(file.path);
});
gulp4
import gulp from 'gulp';
let watcher = gulp.watch(souce, gulp.series('build'));
watcher.on('all', (event, path) => {
console.log(file.event);
console.log(file.path);
});
Author And Source
この問題について(gulp4のgulp-watchでファイルのイベントやパスを取得する), 我々は、より多くの情報をここで見つけました https://qiita.com/shigemaruu/items/bc99c55d037b8dbfd236著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .