I am using Grunt with a grunt server task that performs a watch task. Unfortunately, after saving a less or coffee file, the "default" task that should be triggered by the watch taks doesn't get triggered and so the browser doesn't livereload.
I was searching the problem but didn't find a proper solution.
Here is an extract of my Gruntfile.coffee:
grunt.registerTask "server", [
'less'
'coffee'
'copy'
"concurrent:server"
"connect:livereload"
"open"
"watch"
]
grunt.registerTask "default", [
'less'
'coffee'
'copy'
]
watch:
coffee:
files: [
'<%= assets %>/scripts/{,*/}*.coffee'
'Gruntfile.coffee'
'<%= assets %>/scripts/*.coffee'
]
less:
files: [
'<%= assets %>/styles/**/**/*.less'
'<%= assets %>/styles/**/*.less'
'<%= assets %>/styles/*.less'
]
files: [
'app/**/*.php'
'app/**/*.html'
]
tasks: 'default'
livereload:
options:
livereload: LIVERELOAD_PORT # is 37562
files: [
"<%= assets %>/{,*/}*.html"
'<%= assets %>/styles/**/*.less'
'<%= assets %>/scripts/*.coffee'
'<%= assets %>/styles/**/*.less'
'<%= assets %>/styles/*.less'
]
Thank you for your help in advance! :)
Why not define separate tasks for each of your watched file groups?
This will compile your CoffeeScript when a
.coffee
file is saved, and compile your less when a.less
file is saved. It doesn't make sense to recompile all yourless
files when acoffee
file is changed, and vice versa.