mirror of
https://github.com/prometheus/docs.git
synced 2026-02-05 15:45:27 +01:00
13 lines
297 B
Ruby
13 lines
297 B
Ruby
# A sample Guardfile
|
|
# More info at https://github.com/guard/guard#readme
|
|
|
|
guard 'nanoc' do
|
|
watch('nanoc.yaml') # Change this to config.yaml if you use the old config file name
|
|
watch('Rules')
|
|
watch(%r{^(content|layouts|lib|static)/.*$})
|
|
end
|
|
|
|
guard 'livereload' do
|
|
watch(%r{output/.+})
|
|
end
|