You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trunk currently doesn't allow users to set directories to watch.
This becomes an annoyance when when serving test/example apps for libraries where the library code may not be in the same directory as the app we're serving. In such situations, we have to re-start trunk. This can be solved if we can set what directories to watch in addition to the current working directory.
The text was updated successfully, but these errors were encountered:
I'm working on an app that is composed of 3 crates in a single workspace, only one of these is built by trunk but it watches all 3 folders.
Something like this would be nice:
[watch]
include = ["./path"] # Meaning: Only watch './path', an empty array would mean watch current directoryexclude = ["./path/to/folder"] # But exclude this subfolder
trunk
currently doesn't allow users to set directories to watch.This becomes an annoyance when when serving test/example apps for libraries where the library code may not be in the same directory as the app we're serving. In such situations, we have to re-start trunk. This can be solved if we can set what directories to watch in addition to the current working directory.
The text was updated successfully, but these errors were encountered: