From 590bfd88a491efba5a39571bc2c82ffbabda2ec8 Mon Sep 17 00:00:00 2001 From: Bartek Wrona <wrona@syncad.com> Date: Wed, 12 Mar 2025 18:58:24 +0100 Subject: [PATCH] pnpm-workspace.yaml should specify more strict source directories to avoid looking too deep into submodules not intended to be included in build process. --- pnpm-config/pnpm-workspace.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pnpm-config/pnpm-workspace.yaml b/pnpm-config/pnpm-workspace.yaml index 9b1fb76..e8f86fb 100644 --- a/pnpm-config/pnpm-workspace.yaml +++ b/pnpm-config/pnpm-workspace.yaml @@ -1,5 +1,7 @@ packages: - - ./**/* # maybe we can constrain it to some common subdirs + - './src/**/*' + - './packages/**/*' + - './wasm/**/*' catalogs: # Can be referenced through "catalog:rollup-toolset" -- GitLab