You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The idea is to behave like the "run" command, but instead of ending when all task are done, this should watch over input files, and retrigger tasks affected by detected changes, and then retrigger dependent tasks.
Problems:
Detecting "input files" in a generic way, to keep configuration to a minimum
Supporting "watch modes". Many build tools (tsc, webpack, vite, rollup, etc...) already have a watch ability, providing optimizations (not rebuild all files) and dev friendly functionalities (hot reload):
Detect those tools (maybe use the "watch" script if available and fallback to "build" script)
Detect when they end their work, to trigger dependent tasks. Retriggering them should not be needed as they should watch over output of previous task
The text was updated successfully, but these errors were encountered:
The idea is to behave like the "run" command, but instead of ending when all task are done, this should watch over input files, and retrigger tasks affected by detected changes, and then retrigger dependent tasks.
Problems:
The text was updated successfully, but these errors were encountered: