From 49a32bf6b4fbed0b5c62bb99497450521a12a41c Mon Sep 17 00:00:00 2001 From: Dmytro Stanchiev Date: Thu, 18 Sep 2025 17:11:31 -0400 Subject: [PATCH] fix: bun's --hot option doesn't like modules Signed-off-by: Dmytro Stanchiev --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef3496e..b7401d2 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "module": "./src/index.ts", "scripts": { "start": "bun ./src/index.ts", - "dev": "bun --hot ./src/index.ts", + "dev": "bun --watch ./src/index.ts", "build": "bun build ./src/index.ts" }, "type": "module",