Pillow/docs/Guardfile

11 lines
356 B
Plaintext
Raw Normal View History

2013-10-07 04:06:00 +04:00
#!/usr/bin/env python
from livereload.task import Task
from livereload.compiler import shell
Task.add('*.rst', shell('make html'))
Task.add('*/*.rst', shell('make html'))
Task.add('_static/*.css', shell('make clean html'))
2013-10-09 03:34:24 +04:00
Task.add('_templates/*', shell('make clean html'))
2013-10-07 04:06:00 +04:00
Task.add('Makefile', shell('make html'))
Task.add('conf.py', shell('make html'))