-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(affected): include dependants in affected filter
- Loading branch information
1 parent
33bef9e
commit f4c3c75
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Setup | ||
$ . ${TESTDIR}/../../helpers/setup_integration_test.sh | ||
|
||
Create a new branch | ||
$ git checkout -b my-branch | ||
Switched to a new branch 'my-branch' | ||
|
||
Edit a file that affects `util` package | ||
$ echo "foo" >> packages/util/index.js | ||
Commit the change | ||
$ git add . | ||
$ git commit -m "add foo" --quiet | ||
|
||
Validate that we run `util#build` and all rdeps | ||
$ ${TURBO} run build --affected --dry=json | jq '.tasks | map(select(.command != "<NONEXISTENT>")) | map(.taskId)| sort' | ||
[ | ||
"my-app#build", | ||
"util#build" | ||
] |