Gulp.watch()會返回咱們熟知的watcher。咱們能夠利用watcher來監聽額外的事件或者向watch中添加文件。html
例如,在執行一系列任務和調用一個函數時,你就能夠在返回的watcher中添加監聽change事件:git
var watcher = gulp.watch('templates/*.tmpl.html', ['build']); watcher.on('change', function (event) { console.log('Event type: ' + event.type); // added, changed, or deleted console.log('Event path: ' + event.path); // The path of the modified file });
除了change事件,還能夠監聽不少其餘的事件:github
Watcher對象也包含了一些能夠調用的方法:gulp
更多詳情,請看:http://www.tuicool.com/articles/AzI3Ib函數
其餘文章:http://markpop.github.io/2014/09/17/Gulp%E5%85%A5%E9%97%A8%E6%95%99%E7%A8%8B/ui