fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 349 B view raw
1#!/usr/bin/env bash 2 3result=$(pnpx turbo run build --affected --dry-run=json) 4 5packages=$(echo "$result" | jq -r '.tasks[].directory' | grep '^packages/' | while read -r dir; do 6 if [ "$(jq -r '.private' "$dir/package.json")" != "true" ]; then 7 echo "./$dir" 8 fi 9done) 10 11if [ -n "$packages" ]; then 12 pnpx pkg-pr-new publish --pnpm $packages 13fi