Is there a recommended way of tracking when files in a folder change and only re-running a build when it would actually create a new artifact?
I know just is 'just' a task runner, but using it is far more desirable then Makefiles. Having a good way of doing this kind of incremental builds (running just twice in a row would cause the second run to do nothing) would be great.
I suppose the user may need to have a system to generate a hash of the folder/files that they depend on and implement their own check in their just targets. I don't know of any tools that could do this well though.