Rename -noPackage flag to -nopackage (#3422)

* Rename `-noPackage` flag to `-nopackage`

* Update PR link
This commit is contained in:
Lea Anthony
2024-05-02 09:13:55 -05:00
committed by GitHub
parent b7713da70e
commit d44b5e9c46
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ type Build struct {
Common
BuildCommon
NoPackage bool `name:"noPackage" description:"Skips platform specific packaging"`
NoPackage bool `description:"Skips platform specific packaging"`
Upx bool `description:"Compress final binary with UPX (if installed)"`
UpxFlags string `description:"Flags to pass to upx"`
Platform string `description:"Platform to target. Comma separate multiple platforms"`
+2 -1
View File
@@ -14,7 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
### Breaking Change
- The `-noPackage` flag was misnamed and is being renamed to `nopackage` to match the other flags. Changed by @leaanthony in [PR](https://github.com/wailsapp/wails/issues/3421).
### Fixed
- Fixed an issue with missing icon for Windows. Fixed by [@APshenkin](https://github.com/wailsapp/wails/pull/3400)