From 347f68d83820778ec0fd70a8402f19e8db4fc44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= <jeremie@astori.fr> Date: Thu, 7 Jan 2021 23:51:22 -0500 Subject: [PATCH] fix(presets): add @cds packages to the Clarity pattern group (#8219) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarity is currently migrating their projects to the @cds scope, and keep the @clr ones as well. Now that we have migrated to the @cds packages, we're back to having separate PRs 😅 --- lib/config/presets/internal/monorepo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/presets/internal/monorepo.ts b/lib/config/presets/internal/monorepo.ts index 3521c84911..7c7a023815 100644 --- a/lib/config/presets/internal/monorepo.ts +++ b/lib/config/presets/internal/monorepo.ts @@ -132,7 +132,7 @@ const repoGroups = { const patternGroups = { babel6: '^babel6$', - clarity: '^@clr/', // https://github.com/vmware/clarity/issues/5235 + clarity: ['^@cds/', '^@clr/'], // https://github.com/vmware/clarity/issues/5235 wordpress: '^@wordpress/', angularmaterial: ['^@angular/material', '^@angular/cdk'], 'aws-java-sdk': '^com.amazonaws:aws-java-sdk-', -- GitLab