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