From cd4b8479d28705abedd72a5f54b5862e1c968ddb Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 29 Apr 2024 11:44:58 +0200 Subject: [PATCH] fix(scripts): correct 'bun:dev' script in package.json The previous `bun:dev` script was missing the key command `bun run`. This has been corrected for proper execution of the script in the development mode. Signed-off-by: Mathis --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d5d0b41..7cf0112 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": "Mathis HERRIOT", "license": "MIT", "scripts": { - "bun:dev": "--watch src/app.ts" + "bun:dev": "bun run --watch src/app.ts" }, "dependencies": { "@node-rs/argon2": "^1.8.3",