+templ.guide

This commit is contained in:
Tobias 2023-12-17 16:16:38 +01:00 committed by Jacob Heider
parent ed1063840d
commit ee091cb9cd
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,5 @@
package main
templ hello(name string) {
<div>Hello, { name }</div>
}

View file

@ -0,0 +1,30 @@
distributable:
url: https://github.com/a-h/templ/archive/refs/tags/v{{version}}.tar.gz
strip-components: 1
versions:
github: a-h/templ
strip: /^v/
build:
dependencies:
go.dev: ^1.20
env:
CGO_ENABLED: 0
LDFLAGS:
- -extldflags=-static
- -w
- -s
script:
- go build -v -ldflags="$LDFLAGS" -o templ ./cmd/templ
- mkdir -p "{{ prefix }}"/bin
- mv templ "{{ prefix }}"/bin
provides:
- bin/templ
test:
script:
- test "$(templ --version)" = {{version}}
- templ generate
- test -f hello_templ.go