Chore/release nsis prerelease#291
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the third-party Rust licenses documentation to include new dependencies and configures the bundle targets in tauri.conf.json. Feedback is provided regarding an invalid bundle target "app" in the Tauri configuration, which should be removed to avoid build validation errors.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| }, | ||
| "bundle": { | ||
| "active": true, | ||
| "targets": ["nsis", "app", "dmg", "appimage", "deb", "rpm"], |
There was a problem hiding this comment.
"app" is not a valid bundle target in Tauri. The supported bundle targets are "all", "deb", "rpm", "appimage", "dmg", "nsis", "msi", and "updater". Including "app" will cause a configuration validation error during the build process.
| "targets": ["nsis", "app", "dmg", "appimage", "deb", "rpm"], | |
| "targets": ["nsis", "dmg", "appimage", "deb", "rpm"], |
No description provided.