biome.json excludes src/client, so the trailing format pass never touched a generated file — it only rewrote unrelated sources on every backend commit. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013Gf7WaExcJ9bs3kfJXB3nK
11 lines
239 B
Bash
11 lines
239 B
Bash
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd backend
|
|
uv run python -c "import fluksio.main; import json; print(json.dumps(fluksio.main.app.openapi()))" > ../openapi.json
|
|
cd ..
|
|
mv openapi.json frontend/
|
|
bun run --filter frontend generate-client
|