This commit is contained in:
grngxd 2025-06-26 19:39:10 +01:00
parent a16f898ed8
commit c3243503a7
5 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ tmp_dir = "tmp"
[build]
args_bin = []
bin = "tmp\\main.exe"
cmd = "go build -o ./tmp/main.exe ./example"
cmd = "go build -o ./tmp/main.exe ./examples/testbench"
delay = 1000
exclude_dir = ["assets", "tmp", "vendor", "testdata", "runtime/out", "node_modules", "dist"]
exclude_file = []

3
.gitignore vendored
View file

@ -1,2 +1,3 @@
tmp/
out/
out/
*.exe

View file

@ -6,4 +6,4 @@ tasks:
default:
cmds:
- bunx tsc -p ./runtime
- go build -ldflags='-H windowsgui' ./example
- go build -ldflags='-H windowsgui' ./examples/testbench