grunt-contrib-watch
grunt-contrib-watch copied to clipboard
Can't get grunt-eslint to work with grunt-contrib-watch (watch only changed files)
Can't get grunt-eslint to work with grunt-contrib-watch (watch only changed files)
Thoughts on how to accomplish this with grunt-contrib-watch?
What config are you using? Whats not working?
watch: {
babel: {
options: {
event: ['changed']
},
files: [
'app/**/modules/*/*.js'
],
tasks: [
'eslint:app',
'newer:babel:dev',
'ngAnnotate'
]
}
}