Fix bindings help text

This commit is contained in:
Lea Anthony 2023-10-09 17:36:58 +11:00
commit ef8c16d773
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405

View file

@ -5,7 +5,7 @@ import "github.com/wailsapp/wails/v3/internal/parser"
type GenerateBindingsOptions struct {
Silent bool `name:"silent" description:"Silent mode"`
ModelsFilename string `name:"m" description:"The filename for the models file" default:"models.ts"`
BindingsFilename string `name:"b" description:"The filename for the bindings file" default:"bindings.js"`
BindingsFilename string `name:"b" description:"The filename for the bindings file" default:"bindings_<package>.js"`
ProjectDirectory string `name:"p" description:"The project directory" default:"."`
OutputDirectory string `name:"d" description:"The output directory" default:"."`
}