From f797a15fdd854e1b7d392c5b35539ea1c533c23d Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Fri, 11 Jul 2025 11:39:20 +0200 Subject: [PATCH] chore: harmonize makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f6510fd1d..3545cc3d8 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ WORKDIR = $(shell pwd) LIBRARIES = $(shell find packages packages_generated -mindepth 1 -maxdepth 1 -type d) build: - pnpm turbo build + pnpm run build install-dependencies: pnpm install @@ -15,10 +15,10 @@ format-check: pnpm run format:check typing: - pnpm turbo typecheck + pnpm run typecheck lint: - pnpm turbo lint + pnpm run lint test: pnpm turbo test