From 62baf2bd5e4812707d4e810580dd3bf4369b5c65 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Sun, 22 Mar 2026 04:24:45 +0000 Subject: [PATCH] fix: also add prettier as direct devDependency pnpm strict mode does not expose transitive dependency binaries. Adding prettier@^2.8.8 alongside eslint@^8.57.0 so that pnpm run format:check works in CI without 'prettier: not found'. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 1 + pnpm-lock.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/package.json b/package.json index ff89e0c..3321a12 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "@vitest/coverage-v8": "^3.2.4", "eslint": "^8.57.0", "jsdom": "^24.0.0", + "prettier": "^2.8.8", "react": "^18.3.1", "react-dom": "^18.3.1", "react-router-dom": "^5.3.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6a28afe..fa3227c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -46,6 +46,9 @@ importers: jsdom: specifier: ^24.0.0 version: 24.1.3 + prettier: + specifier: ^2.8.8 + version: 2.8.8 react: specifier: ^18.3.1 version: 18.3.1