font-awesome-animation/grunt/watch.js

16 lines
405 B
JavaScript
Raw Normal View History

module.exports = {
livereload: {
options: {
livereload: '<%= express.options.livereload %>'
},
files: [
'<%= yeoman.currentDir %>',
'<%= yeoman.demo %>/**/*.html',
'<%= yeoman.demo %>/**/*.js',
'<%= yeoman.styles %>/{,*/}*.css',
'<%= yeoman.src %>/{,*/}*.css'
],
tasks: ['build']
}
};