mirror of
https://github.com/wavetermdev/wails.git
synced 2026-08-05 13:53:43 -07:00
* remove 'test' project * dynamic template list generation - uses a single fs.Embed to contain all templates - walks and rebuilds the list of TemplateData using the cached data - pulls the `description` out of the required `template.json` file in the template directory * [v3] template handling update - move "common" template files to a _common directory - update generator to render from _common/* first - render selected template last to overwrite anything provided by _common if needed - remove duplicate files from all templates that do not change * cleanup template project directory after test * add linux to _common/Taskfile.yaml * noop: whitespace cleanup _common/Taskfile.yaml
20 lines
642 B
Cheetah
20 lines
642 B
Cheetah
module changeme
|
|
|
|
go 1.21
|
|
|
|
require github.com/wailsapp/wails/v3 v3.0.0-alpha.0
|
|
|
|
require (
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/leaanthony/slicer v1.5.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/samber/lo v1.37.0 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
golang.org/x/exp v0.0.0-20220930202632-ec3f01382ef9 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
)
|
|
{{if gt (len .LocalModulePath) 0}}
|
|
replace github.com/wailsapp/wails/v3 => {{.LocalModulePath}}v3
|
|
{{end}}
|