From 5748a69de3164093f841cc0ebe7878c8e7199dc4 Mon Sep 17 00:00:00 2001 From: Max Schwenk Date: Wed, 7 Sep 2022 17:56:57 -0400 Subject: [PATCH] Missed a second case --- docs/Configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 759e0c38fc9f..debd65b5606c 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -2185,7 +2185,7 @@ export default config; :::tip -If you use `pnpm` and need to convert some packages under `node_modules`, you need to note that the packages in this folder (e.g. `node_modules/package-a/`) have been symlinked to the path under `.pnpm` (e.g. `node_modules/.pnpm/package-a@x.x.x/node_modules/pakcage-a/`), so using `/node_modules/(?!(package-a|package-b)/)` directly will not be recognized, while is to use: +If you use `pnpm` and need to convert some packages under `node_modules`, you need to note that the packages in this folder (e.g. `node_modules/package-a/`) have been symlinked to the path under `.pnpm` (e.g. `node_modules/.pnpm/package-a@x.x.x/node_modules/pakcage-a/`), so using `/node_modules/(?!(package-a|package-b)/)` directly will not be recognized, while is to use: ```js tab /** @type {import('jest').Config} */