all repos — homestead @ f049058343134db98f9d2133dd7c82bfab29c4b9

Code for my website

Enable bun watch mode via `bun dev`

Alan Pearce
commit

f049058343134db98f9d2133dd7c82bfab29c4b9

parent

f818573dedb4828e107ba3574e76f5062317dd9f

2 files changed, 3 insertions(+), 0 deletions(-)

jump to
M package.jsonpackage.json
@@ -3,6 +3,7 @@ "name": "homestead",
"module": "src/index.ts", "scripts": { "start": "bun run .", + "dev": "bun run --watch src/app.ts", "build": "bun run bin/build.ts" }, "devDependencies": {
M src/app.tssrc/app.ts
@@ -265,3 +265,5 @@ console.log(request.method, status, pathname, newpath ? newpath : "");
} }, } satisfies Serve; + +export default server;