watch.js 196 B

1234567891011121314
  1. 'use strict';
  2. module.exports = function(grunt) {
  3. return {
  4. docs: {
  5. files: ['**/*.rst'],
  6. tasks: ['exec:build_docs'],
  7. options: {
  8. livereload: true
  9. }
  10. }
  11. }
  12. }