Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Grunt] Can't get watch working… Reply To: [Grunt] Can't get watch working…

#182472
Chromawoods
Participant

I think you need to define a file pattern within the watch task. So if you just want to watch any file within the images folder, you would do files: ['images/*'] or if you have sub folders you can do it recursively with files: ['images/**/*'].