Packaging
pnpm tauri buildOutput locations
Section titled “Output locations”Passing an explicit --target <triple> adds a triple directory:
- macOS:
src-tauri/target/**/release/bundle/macos/*.app(with update artifacts:<Product>.app.tar.gz+.sig) - Windows:
src-tauri/target/**/release/bundle/nsis/*-setup.exe(msi depending on--bundles)
For the full signed release flow, see Release and auto-update.
Security notes (hand these to a reviewer)
Section titled “Security notes (hand these to a reviewer)”- The installed app opens no local port: frontend assets load through an in-process custom protocol, with no web server.
- The only network activity is the HTTP requests the app itself initiates.
Maintaining content
Section titled “Maintaining content”- Edit
src/content/changelog.md/src/content/about.mdfor the changelog and about pages. - The version’s single source of truth is
src-tauri/tauri.conf.json > version; before a release runpnpm version:bump x.y.zto sync all three (tauri.conf.json/Cargo.toml/package.json).