From a4100d87094213d00210df32c874a3b4a1462747 Mon Sep 17 00:00:00 2001 From: adrienne-fossa Date: Mon, 24 Nov 2025 11:24:28 -0800 Subject: [PATCH 1/3] Update pnpm.md with lock file info --- docs/references/strategies/languages/nodejs/pnpm.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/references/strategies/languages/nodejs/pnpm.md b/docs/references/strategies/languages/nodejs/pnpm.md index c6d8412503..71c4360186 100644 --- a/docs/references/strategies/languages/nodejs/pnpm.md +++ b/docs/references/strategies/languages/nodejs/pnpm.md @@ -25,6 +25,10 @@ in `pnpm-lock.yaml` to analyze the dependency graph. - `peerDependencies`: list of peer dependencies (will be treated like any other dependency) - `dev`: to infer if this is used dependency or not. If the value is `true` by default CLI will not include this in the final analysis. +> 📘 Important Note +> +> Anything defined in the `importers` section will be flagged out. In order to scan individual targts, the workspace needs to have individual/separate lock files. + An example is provided below: ```yml From 5f693d64b958aa6f6e028571982e97d8ea68abd7 Mon Sep 17 00:00:00 2001 From: adrienne-fossa Date: Tue, 25 Nov 2025 15:10:15 -0800 Subject: [PATCH 2/3] Adding a note to the PNPM documentation, documentation only change. --- docs/references/strategies/languages/nodejs/pnpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/strategies/languages/nodejs/pnpm.md b/docs/references/strategies/languages/nodejs/pnpm.md index 71c4360186..ff203e2604 100644 --- a/docs/references/strategies/languages/nodejs/pnpm.md +++ b/docs/references/strategies/languages/nodejs/pnpm.md @@ -27,7 +27,7 @@ in `pnpm-lock.yaml` to analyze the dependency graph. > 📘 Important Note > -> Anything defined in the `importers` section will be flagged out. In order to scan individual targts, the workspace needs to have individual/separate lock files. +> Anything defined in the `importers` section will be ignored out. In order to scan individual targts, the workspace needs to have individual/separate lock files. An example is provided below: From b25f8207744178bc42458552b9549f668acac61b Mon Sep 17 00:00:00 2001 From: adrienne-fossa Date: Tue, 25 Nov 2025 15:10:46 -0800 Subject: [PATCH 3/3] Adding a note to the PNPM documentation, documentation only change. --- docs/references/strategies/languages/nodejs/pnpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/strategies/languages/nodejs/pnpm.md b/docs/references/strategies/languages/nodejs/pnpm.md index ff203e2604..30a4a099db 100644 --- a/docs/references/strategies/languages/nodejs/pnpm.md +++ b/docs/references/strategies/languages/nodejs/pnpm.md @@ -27,7 +27,7 @@ in `pnpm-lock.yaml` to analyze the dependency graph. > 📘 Important Note > -> Anything defined in the `importers` section will be ignored out. In order to scan individual targts, the workspace needs to have individual/separate lock files. +> Anything defined in the `importers` section will be ignored. In order to scan individual targts, the workspace needs to have individual/separate lock files. An example is provided below: