From b239aafe3168954d37b432f7746b4c1e858d48e5 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Sun, 27 Jul 2025 14:36:50 +0800 Subject: [PATCH] chore: add ignoredBuiltDependencies to suppress pnpm warnings These two postinstall scripts aren't needed in this project. --- pnpm-workspace.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 735dbd81..7c06994d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,8 @@ packages: - - 'template/base' - - 'template/config/**' - - 'template/tsconfig/**' + - template/base + - template/config/** + - template/tsconfig/** + +ignoredBuiltDependencies: + - chromedriver + - cypress -- 2.47.2