Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/get-changeset-arguments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ add_reverse_package_deps() {
continue
fi
# git grep is a fast way to find candidate package.json files that probably depend on $package
for reverse_dep_package_file in $(git grep -l '"'"$package"'": "workspace:\*"' 'packages/*/*/package.json'); do
for reverse_dep_package_file in $(git grep -l '"'"$package"'": "' 'packages/*/*/package.json'); do
# Check to make sure the candidate package.json file actually depends on $package
if jq -e --arg package "$package" '[ .dependencies | select(. | has($package)) ] | length > 0' "$reverse_dep_package_file" > /dev/null; then
jq -r '.name' "$reverse_dep_package_file"
Expand Down
Loading