From 49c99d524c2827f1b73ebaf51798e40ab802314b Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:41:42 -0700 Subject: [PATCH 1/3] chore(plugin-pnp): add 'pnpm' option in nodeLinker config description --- packages/plugin-pnp/sources/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-pnp/sources/index.ts b/packages/plugin-pnp/sources/index.ts index 9eeed3fc77ae..9a1a6efc3c21 100644 --- a/packages/plugin-pnp/sources/index.ts +++ b/packages/plugin-pnp/sources/index.ts @@ -84,7 +84,7 @@ const plugin: Plugin = { }, configuration: { nodeLinker: { - description: `The linker used for installing Node packages, one of: "pnp", "node-modules"`, + description: `The linker used for installing Node packages, one of: "pnp", "pnpm", "node-modules"`, type: SettingsType.STRING, default: `pnp`, }, From 10b03a86c3749e6dd3994dddd947cc352659fd11 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:42:29 -0700 Subject: [PATCH 2/3] chore: yarn version check -i --- .yarn/versions/64c67350.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .yarn/versions/64c67350.yml diff --git a/.yarn/versions/64c67350.yml b/.yarn/versions/64c67350.yml new file mode 100644 index 000000000000..e19abdb92b27 --- /dev/null +++ b/.yarn/versions/64c67350.yml @@ -0,0 +1,8 @@ +releases: + "@yarnpkg/plugin-pnp": patch + +declined: + - "@yarnpkg/plugin-nm" + - "@yarnpkg/plugin-pnpm" + - "@yarnpkg/cli" + - "@yarnpkg/core" From dbe68336ac122a0e8019ac4b4905f03cb15fade7 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:35:42 -0700 Subject: [PATCH 3/3] chore: add 'or' while describing nodeLinker options Co-authored-by: Kristoffer K. --- packages/plugin-pnp/sources/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-pnp/sources/index.ts b/packages/plugin-pnp/sources/index.ts index 9a1a6efc3c21..4c7c870c0f57 100644 --- a/packages/plugin-pnp/sources/index.ts +++ b/packages/plugin-pnp/sources/index.ts @@ -84,7 +84,7 @@ const plugin: Plugin = { }, configuration: { nodeLinker: { - description: `The linker used for installing Node packages, one of: "pnp", "pnpm", "node-modules"`, + description: `The linker used for installing Node packages, one of: "pnp", "pnpm", or "node-modules"`, type: SettingsType.STRING, default: `pnp`, },