### What version of Turborepo are you using? 1.0.4 ### Describe the Bug Dependant projects hit a cache if only a dependency has changed. Changing something to `packages/ui` should result in a rebuild of the apps. ### Expected Behavior if I change something in `packages/ui`, I'd expect that the dependants (`apps/docs` | `apps/web`) would not hit a cache and rebuild. ### To Reproduce * Run `npx create-turbo` * `yarn build` to build the cache * Change something in `packages/ui/Button.tsx` * Rerun `yarn build` -> Everything is outputted as already built.