From 4b9cd05505731e9ce8a155e52a641886d2b1a0b9 Mon Sep 17 00:00:00 2001 From: Antoliny0919 Date: Tue, 21 Jul 2026 22:39:04 +0900 Subject: [PATCH] docs(CONTRIBUTING): replace 'npm run test' and 'npx nx' command with 'pnpm' equivalents --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 931a591f38..a3b5e165e7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -179,7 +179,7 @@ To run tests in a local environment, you should use `nx` commands from the root To run tests for **all packages**, run: ```bash -npm run test +pnpm run test ``` ### ✅ Run tests for a specific package @@ -187,13 +187,13 @@ npm run test To run tests for a specific package, use the following command: ```bash -npx nx run @tanstack/{package-name}:test:lib +pnpm nx run @tanstack/{package-name}:test:lib ``` For example: ```bash -npx nx run @tanstack/react-query:test:lib +pnpm nx run @tanstack/react-query:test:lib ``` ### ⚠️ Caution