Initial commit

This commit is contained in:
DavidOnTop 2025-06-11 13:38:36 +02:00
commit 71e3ed710d
Signed by: DavidOnTop
GPG key ID: 8D3E9A75E3E13D89
15 changed files with 621 additions and 0 deletions

11
fake.fsx Normal file
View file

@ -0,0 +1,11 @@
#load @".paket/load/net9.0/Build/build.group.fsx"
open Fake.Core
Target.create "build" (fun _ ->
ignore 0
)
Target.create "run" (fun _ ->
Shell.Exec("dotnet", "fable -o out -s --watch -e .fs.jsx --run bun run dev") |> ignore
)