From 006992b85ab4057dea5e45b619ea89bdde8375a5 Mon Sep 17 00:00:00 2001 From: theg1239 Date: Thu, 24 Apr 2025 17:03:13 +0530 Subject: [PATCH] chore: update lint-staged config to use pnpm --filter (#582) Replaced directory-specific commands with workspace-aware pnpm commands --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b516ce40fa..8998ecefcf 100644 --- a/package.json +++ b/package.json @@ -38,8 +38,8 @@ "*.md": "prettier --write", ".github/workflows/*.yml": "prettier --write", "**/*.{js,ts,tsx}": [ - "cd codex-cli && pnpm run lint", - "cd codex-cli && pnpm run typecheck" + "pnpm --filter @openai/codex run lint", + "pnpm --filter @openai/codex run typecheck" ] }, "packageManager": "pnpm@10.8.1"