我正在拼湊一個大文件,我想知道是否可以將gulp-notify
(或其他解決方案)與watch任務結合起來,以便在watch任務開始運行時彈出一條消息。我無法從我的搜索中找到任何關於如何執行此操作的信息。它甚至有可能嗎?是否有可能在watch任務中運行gulp-notify?
這裏是我的手錶任務:
// Watch our files for changes
gulp.task('watch', function() {
// -- I wanna run a notify message here saying 'Watching for changes...' -- //
gulp.watch('assets/styles/**/*.scss', ['styles']);
gulp.watch('assets/scripts/**/*.js', ['scripts']);
gulp.watch('assets/images/**/*', ['images']);
});
那倒只是將它打印到控制檯上,因爲我不想在那裏查看它何時開始,所以它沒有任何用處。 – Chrillewoodz