From e92caadca75c540f77e44e78305e86fcf6347670 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Thu, 26 Sep 2024 16:26:53 -0400 Subject: [PATCH] replace nekotools server with simple http-server (#318) --- Make.hx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Make.hx b/Make.hx index 483f59e0..6ebfa73a 100644 --- a/Make.hx +++ b/Make.hx @@ -15,8 +15,7 @@ function main() { Sys.command("npx lix run dox -o bin/pages -i bin/xml --include dox -D source-path https://github.com/HaxeFoundation/dox/tree/master/test"); case "server": - Sys.setCwd("bin/pages"); - Sys.command("nekotools server"); + Sys.command("npx http-server bin/pages -c-1"); case "package": Sys.command("7z a -i!run.n -i!run.js -i!resources -i!themes -i!src -i!haxelib.json -i!README.md -i!LICENSE.md -i!CHANGELOG.md bin/haxelib.zip");