From c3243503a7df00338965498f53ff186d7d8e73a2 Mon Sep 17 00:00:00 2001 From: grngxd <36968271+grngxd@users.noreply.github.com> Date: Thu, 26 Jun 2025 19:39:10 +0100 Subject: [PATCH] oops --- .air.toml | 2 +- .gitignore | 3 ++- Taskfile.yml | 2 +- examples/{ => testbench}/index.html | 0 examples/{ => testbench}/main.go | 0 5 files changed, 4 insertions(+), 3 deletions(-) rename examples/{ => testbench}/index.html (100%) rename examples/{ => testbench}/main.go (100%) diff --git a/.air.toml b/.air.toml index d7ff5c6..c998ed5 100644 --- a/.air.toml +++ b/.air.toml @@ -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 = [] diff --git a/.gitignore b/.gitignore index 72c806f..eb92321 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ tmp/ -out/ \ No newline at end of file +out/ +*.exe \ No newline at end of file diff --git a/Taskfile.yml b/Taskfile.yml index f3cc338..7c5b726 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -6,4 +6,4 @@ tasks: default: cmds: - bunx tsc -p ./runtime - - go build -ldflags='-H windowsgui' ./example + - go build -ldflags='-H windowsgui' ./examples/testbench diff --git a/examples/index.html b/examples/testbench/index.html similarity index 100% rename from examples/index.html rename to examples/testbench/index.html diff --git a/examples/main.go b/examples/testbench/main.go similarity index 100% rename from examples/main.go rename to examples/testbench/main.go