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] [build]
args_bin = [] args_bin = []
bin = "tmp\\main.exe" bin = "tmp\\main.exe"
cmd = "go build -o ./tmp/main.exe ./example" cmd = "go build -o ./tmp/main.exe ./examples/testbench"
delay = 1000 delay = 1000
exclude_dir = ["assets", "tmp", "vendor", "testdata", "runtime/out", "node_modules", "dist"] exclude_dir = ["assets", "tmp", "vendor", "testdata", "runtime/out", "node_modules", "dist"]
exclude_file = [] exclude_file = []

1
.gitignore vendored
View file

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

View file

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