From f81fea22979d8e2f63b53eebf2cb08661056aeea Mon Sep 17 00:00:00 2001 From: Fusion Date: Thu, 14 May 2026 07:16:08 +0200 Subject: [PATCH] =?UTF-8?q?feat(FN-002):=20complete=20Step=206=20=E2=80=94?= =?UTF-8?q?=20Testing=20&=20Verification?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fusion-Task-Id: FN-002 Fusion-Task-Lineage: 49cb7077-d805-4d39-9a27-ae50744f2839 --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 7119991..73d24da 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,23 @@ .PHONY: install lint test typecheck build dev compose-up compose-down clean install: - pnpm install + npx pnpm@11.1.1 install cd apps/api && python3 -m venv .venv && .venv/bin/pip install -e ".[dev]" lint: - pnpm lint + npx pnpm@11.1.1 lint test: - pnpm test + npx pnpm@11.1.1 test typecheck: - pnpm typecheck + npx pnpm@11.1.1 typecheck build: - pnpm build + npx pnpm@11.1.1 build dev: - pnpm dev + npx pnpm@11.1.1 dev compose-up: docker compose up --build -d