2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gulp4のgulp-watchでファイルのイベントやパスを取得する

Last updated at Posted at 2018-08-03

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);
});

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?