Skip to content

fix(ci): restore tauri.conf.json's formatting, broken by the 5.0.0 bump - #264

Merged
adulbrich merged 1 commit into
mainfrom
fix-tauri-conf-format
Aug 7, 2026
Merged

fix(ci): restore tauri.conf.json's formatting, broken by the 5.0.0 bump#264
adulbrich merged 1 commit into
mainfrom
fix-tauri-conf-format

Conversation

@adulbrich

Copy link
Copy Markdown
Collaborator

main is currently failing lint. One line, one file.

#262 edited the version with a JSON serializer, which re-serialised the whole document and expanded "scope": ["**"] across three lines. Biome's formatter wants it inline, so npm run lint has failed on main since that merge and every branch cut from it inherits the failure.

-        "scope": [
-          "**"
-        ]
+        "scope": ["**"]

That is the entire change. Versions are untouched and still agree at 5.0.0 across package.json, tauri.conf.json and Cargo.toml, so release.yml's check still passes.

How it got in

#262's CI was reported as passing when only the two Vercel checks had reported; the Actions run failed and was not re-read before the merge. Visible now in the run list as chore(release): 5.0.0 — CI (web) — failure.

Worth remembering

A version bump has no business reformatting the file it edits. Doing this by hand, or with a targeted replacement rather than a round-trip through a JSON serializer, avoids the whole class.

Blocks #263, which is otherwise green: its end-to-end jobs pass on both engines and only this inherited lint error fails.

🤖 Generated with Claude Code

#262 edited the version with a JSON serializer, which re-serialised the whole
file and expanded "scope": ["**"] across three lines. Biome's formatter wants
it inline, so lint has failed on main since that merge, and every branch cut
from main inherits it.

That went unnoticed because #262's own CI was reported as passing when only the
Vercel checks had run; the Actions run failed and was not re-read before merge.

A version bump has no business reformatting the file it edits. If this is done
again by hand, change the one line rather than round-tripping the document.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@vercel

vercel Bot commented Aug 7, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
lumilab Ready Ready Preview Aug 7, 2026 9:05am

@adulbrich
adulbrich merged commit 6622cbf into main Aug 7, 2026
5 of 12 checks passed
@adulbrich
adulbrich deleted the fix-tauri-conf-format branch August 7, 2026 09:08
adulbrich added a commit that referenced this pull request Aug 7, 2026
…mp (#264)

#262 edited the version with a JSON serializer, which re-serialised the whole
file and expanded "scope": ["**"] across three lines. Biome's formatter wants
it inline, so lint has failed on main since that merge, and every branch cut
from main inherits it.

That went unnoticed because #262's own CI was reported as passing when only the
Vercel checks had run; the Actions run failed and was not re-read before merge.

A version bump has no business reformatting the file it edits. If this is done
again by hand, change the one line rather than round-tripping the document.

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant