Out of the box the Adonis node ace serve --watch command will bounce your dev server when changes are made to the underlying ts files. I, like probably many of others have grown accustomed to having changes reflected as I edit my files (controllers, models, etc.).
The node ace queue:listen command in this project does not follow the same rules. When I edit my jobs I have to remember to manually stop and start the listener command again. I'm constantly forgetting to do this especially when returning to work on these job related files after not having been in the area in a while. I've already lost quite a bit of time wondering why something isn't working, only to realize I forgot to bounce the listener because the job files require the listener be restarted.
Is there the possibility of supporting something similar to the --watch flag? Or, I'm also to open to suggestions outside of code changes.
Out of the box the Adonis
node ace serve --watch
command will bounce your dev server when changes are made to the underlying ts files. I, like probably many of others have grown accustomed to having changes reflected as I edit my files (controllers, models, etc.).The
node ace queue:listen
command in this project does not follow the same rules. When I edit my jobs I have to remember to manually stop and start the listener command again. I'm constantly forgetting to do this especially when returning to work on these job related files after not having been in the area in a while. I've already lost quite a bit of time wondering why something isn't working, only to realize I forgot to bounce the listener because the job files require the listener be restarted.Is there the possibility of supporting something similar to the
--watch
flag? Or, I'm also to open to suggestions outside of code changes.