all repos — website @ 734fbe8444db4454953663dd263a5778f8742eeb

My website

Enable bun watch mode via `bun dev`

Alan Pearce
commit

734fbe8444db4454953663dd263a5778f8742eeb

parent

f9b4f8dc9b3e918d577bf61763e3b9cf1f0a7891

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

changed files
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;