watch.js 331 B

12345678910111213141516
  1. module.exports = {
  2. src: {
  3. files: [
  4. //what are the files that we want to watch
  5. 'assets/css/*.css',
  6. 'templates/**/*.html',
  7. 'grunt/*.js',
  8. ],
  9. tasks: ['default'],
  10. options: {
  11. nospawn: true,
  12. livereload: false,
  13. }
  14. }
  15. };