is there a way to get pants to not restart a targe...
# general
s
is there a way to get pants to not restart a target when you edit files while it's building a target? I very often find myself wanting to edit source files while long docker builds are running (although I've been trying to use the build time for documentation which is a kind of nice side-effect)
h
You can run with
--no-watch-filesystem --no-pantsd
but there will be a potential perf cost to not running with the daemon. Might be fine for a long docker build though.
s
yeah it'd be just for local iterating. thanks!