Request : Auto Reload
jm-kumaresh opened this issue · 3 comments
jm-kumaresh commented
Any idea adding auto reload the browser when there is a changes in file.
omichelsen commented
You can do it with browser-sync.
Nadeeshyama commented
I use livereloadx. Example package.json
file:
"scripts": {
"server": "harp server",
"livereload": "livereloadx -s public --include '*.{json,less,scss,js,ejs,jade,md,pug}'",
"dev": "npm-run-all --parallel server livereload",
"start": "npm run dev",
"compile": "harp compile"
}
misterhtmlcss commented
@omichelsen Thank you for sharing that article. Also @Nadeeshyama that's a great set up you have for your package.json as well. Thank you guys.