Conversation
- Update tauri 2.9.5 → 2.10.2, tauri-build 2.5.3 → 2.5.5 - Update all Tauri plugins to latest pinned versions (no more loose "2" ranges) - Update @tauri-apps/cli ^2.10.0, @tauri-apps/api ^2.10.0, plugin-dialog ^2.6.0 - Add project .npmrc to use public npm registry (overrides org Artifactory) - Refactor justfile: remove _ensure-deps, add ci recipe, check-all now formats first - Update AGENTS.md to match new justfile recipes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Three related fixes to make the dev setup more reliable and consistent.
1. Fix npm registry for OSS use
.npmrcwithregistry=https://registry.npmjs.org/npm installworks without VPN2. Update all Tauri dependencies to latest 2.10
tauri(Rust)tauri-buildtauri-plugin-logtauri-plugin-dialogtauri-plugin-window-statetauri-plugin-mcp-bridge@tauri-apps/cli@tauri-apps/api@tauri-apps/plugin-dialogAll pinned to specific versions — no more loose
"2"ranges that could cause mismatches.3. Refactor justfile
_ensure-deps(was checking wrong things; just runjust installonce)rustup default stable(shouldn't mutate global toolchain state)check-allnow runsfmtfirst (auto-fixes), then lint + typecheckcirecipe for read-only verification (CI / lefthook hooks)frontendrecipeTesting
just check-allpasses — zero errors, zero warnings.