From fa8215979efe3fa86dfd6a5fc89bec0d12cfeed0 Mon Sep 17 00:00:00 2001 From: zahra shahrouzi Date: Mon, 8 Apr 2024 17:55:19 +0330 Subject: [PATCH] fix typo in dev script of a kitchen-sink's package (#7913) ### Description Fixed the problem of @repo/logger not watching for changes. I think a part of this issue would also be fixed https://github.com/vercel/turbo/issues/7871. ### Testing Instructions After running the dev script of the monorepo, making changes in logger package and saving it should result in building the logger package once more. --- examples/kitchen-sink/packages/logger/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/kitchen-sink/packages/logger/package.json b/examples/kitchen-sink/packages/logger/package.json index 9fd3a65c2ce53..35375e5c7614c 100644 --- a/examples/kitchen-sink/packages/logger/package.json +++ b/examples/kitchen-sink/packages/logger/package.json @@ -9,7 +9,7 @@ ], "scripts": { "build": "tsup", - "watch": "tsup --watch", + "dev": "tsup --watch", "lint": "eslint src/", "typecheck": "tsc --noEmit", "test": "jest"