I have a couple of problems with the build system:
When I do not disable automatic reloading by setting watch = false in homotopy-web/Makefile.toml, the cargo make serve command rebuilds in a never-ending loop.
When this is disabled, running cargo make serve with -p development or without any flags rebuilds all dependencies every time when run.
Using -p production instead fixes the rebuild all dependencies problem, but is quite slow. This makes testing any change into an ordeal. I am using MacOS and according to @NickHu these problems don't occur for him on Linux; @calintat does this work fine for you?
I have a couple of problems with the build system:
watch = false
inhomotopy-web/Makefile.toml
, thecargo make serve
command rebuilds in a never-ending loop.cargo make serve
with-p development
or without any flags rebuilds all dependencies every time when run.Using
-p production
instead fixes the rebuild all dependencies problem, but is quite slow. This makes testing any change into an ordeal. I am using MacOS and according to @NickHu these problems don't occur for him on Linux; @calintat does this work fine for you?