if files in `foo` are changed `foo` and `bar` both get rebuilt. ``` [[component]] id = "foo" ... [component.build] workdir = "foo" command = "cargo build --target wasm32-wasi --release" watch = ["src/**/*.rs", "Cargo.toml"] [[component]] id = "bar" [component.build] workdir = "bar" command = "cargo build --target wasm32-wasi --release" watch = ["src/**/*.rs", "Cargo.toml"] ```