grafana/emails/grunt/watch.js
2015-08-11 16:40:23 +02:00

17 lines
331 B
JavaScript

module.exports = {
src: {
files: [
//what are the files that we want to watch
'assets/css/*.css',
'templates/**/*.html',
'grunt/*.js',
],
tasks: ['default'],
options: {
nospawn: true,
livereload: false,
}
}
};