pmndrs / directed

A flexible, minimal scheduler written in TypeScript
MIT License
25 stars 1 forks source link

`add` builds but `remove` does not #11

Closed krispya closed 3 months ago

krispya commented 3 months ago

I got caught by a bug this evening because while add builds automatically, remove does not and you have to call build yourself for the command to commit. Is this the intended behavior?

akdjr commented 3 months ago

Unintended! add needs to change as the intention is for build to be called manually to support batching adds without building each time add is called.

akdjr commented 3 months ago

Fixed - add now follows the same behavior as remove.