11 lines
239 B
FSharp
11 lines
239 B
FSharp
#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
|
|
)
|