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

test: try to build again first

Lubos a9ae5cd4 948d7954

+8
+8
scripts/examples-generate.sh
··· 10 10 ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" 11 11 12 12 echo "⏳ Generating client code for all examples..." 13 + # Build the CLI package so its bin is available to examples in the workspace. 14 + echo "Building @hey-api/openapi-ts (required for example generation)..." 15 + if pnpm -w -s --version >/dev/null 2>&1; then 16 + pnpm -w -s --filter "@hey-api/openapi-ts" build 17 + else 18 + pnpm -s --filter "@hey-api/openapi-ts" build 19 + fi 20 + 13 21 # Find all examples with openapi-ts script and generate code in parallel 14 22 # Concurrency control: adjust this number depending on CI machine resources 15 23 CONCURRENCY=${CONCURRENCY:-4}