mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-16 15:45:50 +01:00
* Add goModTidy function to clean up Go module dependencies during installation (#4283) * Add goModTidy function and update changelog for automatic execution after wails init (#4283) * Update CLI documentation to clarify bypassing 'go mod tidy' during project initialization (#4283) * Add -skipgomodtidy flag to CLI and update installation logic to conditionally run go mod tidy * Update CLI documentation to reflect default value of -skipgomodtidy flag and clean up code (#4283) * Update docs/src/content/docs/guides/cli.mdx * fix changelog --------- Co-authored-by: Triadmoko Denny Fatrosa <triadmoko.fatrosa@codemi.co.id> Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
22 lines
1.5 KiB
Go
22 lines
1.5 KiB
Go
package flags
|
|
|
|
type Init struct {
|
|
Common
|
|
|
|
PackageName string `name:"p" description:"Package name" default:"main"`
|
|
TemplateName string `name:"t" description:"Name of built-in template to use, path to template or template url" default:"vanilla"`
|
|
ProjectName string `name:"n" description:"Name of project" default:""`
|
|
ProjectDir string `name:"d" description:"Project directory" default:"."`
|
|
Quiet bool `name:"q" description:"Suppress output to console"`
|
|
List bool `name:"l" description:"List templates"`
|
|
SkipGoModTidy bool `name:"skipgomodtidy" description:"Skip running go mod tidy"`
|
|
Git string `name:"git" description:"Git repository URL to initialize (e.g. github.com/username/project)"`
|
|
ProductName string `description:"The name of the product" default:"My Product"`
|
|
ProductDescription string `description:"The description of the product" default:"My Product Description"`
|
|
ProductVersion string `description:"The version of the product" default:"0.1.0"`
|
|
ProductCompany string `description:"The company of the product" default:"My Company"`
|
|
ProductCopyright string `description:"The copyright notice" default:"\u00a9 now, My Company"`
|
|
ProductComments string `description:"Comments to add to the generated files" default:"This is a comment"`
|
|
ProductIdentifier string `description:"The product identifier, e.g com.mycompany.myproduct"`
|
|
SkipWarning bool `name:"s" description:"Skips the warning message when using remote templates"`
|
|
}
|