fix: bun's --hot option doesn't like modules

Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
2025-09-18 17:11:31 -04:00
parent 3166b5a95f
commit 49a32bf6b4

View File

@@ -3,7 +3,7 @@
"module": "./src/index.ts", "module": "./src/index.ts",
"scripts": { "scripts": {
"start": "bun ./src/index.ts", "start": "bun ./src/index.ts",
"dev": "bun --hot ./src/index.ts", "dev": "bun --watch ./src/index.ts",
"build": "bun build ./src/index.ts" "build": "bun build ./src/index.ts"
}, },
"type": "module", "type": "module",