From 84a09490a1ed23bf4072f5cac1c4cc763bb10369 Mon Sep 17 00:00:00 2001 From: HoJeong Go Date: Wed, 10 Jul 2024 13:46:05 +0900 Subject: [PATCH] chore: remove tsc from build workflow tsc is no longer used to build our library --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 65f0ec90bc..373909a718 100644 --- a/package.json +++ b/package.json @@ -59,8 +59,8 @@ "scripts": { "postinstall": "patch-package", "lint": "lerna run --parallel lint", - "watch": "tsc --build ./tsconfig.project.json --watch", - "build": "tsc --build ./tsconfig.project.json && lerna run build", + "watch": "lerna run --parallel build -- --watch", + "build": "lerna run build", "test": "lerna run --concurrency 4 test", "clean": "lerna run --parallel clean && lerna clean --yes", "release": "auto shipit -v",