Hi !
I am doing some devlopment on peertube-runner but I don’t how to set it up in watch mode like we have peertube. For peertube we have dev
command using which the changes are reflected immediately, the same exists for runner dev:peertube-runner
but it only watches the files for errors. I still have to build manually to actuall run the code.
What I do now for making some changes:
npm run build:peertube-runner
- Kill the existing process and then
cd apps/peertube-runner/dist && node ./peertube-runner.js server
Is there a way where I don’t have to build manually and run again ?
Thanks