From e6d00a9cd55077216b83daba5db72dbace455555 Mon Sep 17 00:00:00 2001 From: Justin Naismith Date: Thu, 12 Feb 2026 11:16:57 +1100 Subject: [PATCH] Fix pnpm-workspace.yaml settings nesting Remove invalid 'settings:' nesting and simplify configuration to only include necessary settings at root level. This aligns with pnpm workspace configuration standards. Changes: - Remove 'settings:' wrapper (not a valid pnpm-workspace.yaml field) - Remove 'autoInstallPeers: true' (not needed for workspace config) - Remove 'strictPeerDependencies: false' (default value) - Keep 'minimumReleaseAge: 10080' at root level - Add 'minimumReleaseAgeExclude: ['@airtasker/*']' at root level Co-Authored-By: Claude Sonnet 4.5 --- pnpm-workspace.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index ae5393a..2c25c6b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -3,7 +3,6 @@ ignoredBuiltDependencies: - core-js-pure - fsevents -settings: - autoInstallPeers: true - minimumReleaseAge: 10080 - strictPeerDependencies: false +minimumReleaseAge: 10080 +minimumReleaseAgeExclude: + - '@airtasker/*'