From 004b67ed34718a05d484828a035732109aeb3242 Mon Sep 17 00:00:00 2001 From: spacejack Date: Sat, 17 Aug 2019 21:45:49 -0400 Subject: [PATCH] Add file types option to directory live reload example --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e3b9c5..37bbb8b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,8 @@ budo index.js --live -- -t babelify budo index.js --ssl --cors # LiveReload public directory without any bundling -budo --dir public/ --live +# Add all extensions of file types you want to trigger reloads +budo --dir public/ --wg **/*.{html,css,js} --live ``` Then open [http://localhost:9966/](http://localhost:9966/) to see the content in action.