Open frangio opened 4 years ago
I would love to have a buidler compile --watch command that I can leave running in the background to recompile contracts when they change on disk.
buidler compile --watch
I would use this to run tests in watch mode at the same time. (Side note: I don't use the built in buidler test command.)
buidler test
As a workaround, I'm using the tool entr for watching:
entr
find contracts -iname '*.sol' | entr -cnr npx hardhat compile
up
I would love to have a
buidler compile --watch
command that I can leave running in the background to recompile contracts when they change on disk.I would use this to run tests in watch mode at the same time. (Side note: I don't use the built in
buidler test
command.)