From 3586b756f4a9fb2eb246fd14469a702578dc9b1f Mon Sep 17 00:00:00 2001 From: Miorel-Lucian Palii Date: Sat, 19 Oct 2024 10:51:42 -0700 Subject: [PATCH 1/2] Small confusion in `foreach`: include -> exclude --- packages/plugin-workspace-tools/sources/commands/foreach.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-workspace-tools/sources/commands/foreach.ts b/packages/plugin-workspace-tools/sources/commands/foreach.ts index 47668fc447c8..36aeb988b083 100644 --- a/packages/plugin-workspace-tools/sources/commands/foreach.ts +++ b/packages/plugin-workspace-tools/sources/commands/foreach.ts @@ -260,7 +260,7 @@ export default class WorkspacesForeachCommand extends BaseCommand { } if (this.exclude.length > 0 && (micromatch.isMatch(structUtils.stringifyIdent(workspace.anchoredLocator), this.exclude) || micromatch.isMatch(workspace.relativeCwd, this.exclude))) { - log(`Excluding ${workspace.relativeCwd} because it matches the --include filter`); + log(`Excluding ${workspace.relativeCwd} because it matches the --exclude filter`); continue; } From 63b91d12deb0b77ad7c7fb331e849cedc0dfa8ab Mon Sep 17 00:00:00 2001 From: Miorel-Lucian Palii Date: Tue, 22 Oct 2024 08:25:42 -0700 Subject: [PATCH 2/2] review feedback --- .yarn/versions/83473dbf.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .yarn/versions/83473dbf.yml diff --git a/.yarn/versions/83473dbf.yml b/.yarn/versions/83473dbf.yml new file mode 100644 index 000000000000..90ec916dc491 --- /dev/null +++ b/.yarn/versions/83473dbf.yml @@ -0,0 +1,23 @@ +releases: + "@yarnpkg/cli": patch + "@yarnpkg/plugin-workspace-tools": patch + +declined: + - "@yarnpkg/plugin-compat" + - "@yarnpkg/plugin-constraints" + - "@yarnpkg/plugin-dlx" + - "@yarnpkg/plugin-essentials" + - "@yarnpkg/plugin-init" + - "@yarnpkg/plugin-interactive-tools" + - "@yarnpkg/plugin-nm" + - "@yarnpkg/plugin-npm-cli" + - "@yarnpkg/plugin-pack" + - "@yarnpkg/plugin-patch" + - "@yarnpkg/plugin-pnp" + - "@yarnpkg/plugin-pnpm" + - "@yarnpkg/plugin-stage" + - "@yarnpkg/plugin-typescript" + - "@yarnpkg/plugin-version" + - "@yarnpkg/builder" + - "@yarnpkg/core" + - "@yarnpkg/doctor"