From fd423903f012f62f912dd9c795650c1ff44e67b7 Mon Sep 17 00:00:00 2001 From: David DOLCIMASCOLO <david.dolcimascolo@gmail.com> Date: Wed, 16 Feb 2022 15:07:45 +0100 Subject: [PATCH] fix(presets): Handle MUI (previously: Material-UI) organization change in material-ui monorepo (#14252) --- lib/config/presets/internal/monorepo.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/config/presets/internal/monorepo.ts b/lib/config/presets/internal/monorepo.ts index 8c411e1ee3..7f60b55ad9 100644 --- a/lib/config/presets/internal/monorepo.ts +++ b/lib/config/presets/internal/monorepo.ts @@ -129,7 +129,10 @@ const repoGroups = { 'material-components-web': 'https://github.com/material-components/material-components-web', mdx: 'https://github.com/mdx-js/mdx', - 'material-ui': 'https://github.com/mui-org/material-ui', + 'material-ui': [ + 'https://github.com/mui-org/material-ui', // Previous organization name (see: https://github.com/mui/material-ui/pull/30944) + 'https://github.com/mui/material-ui', + ], 'mikro-orm': 'https://github.com/mikro-orm/mikro-orm', mockito: 'https://github.com/mockito/mockito', mstest: 'https://github.com/microsoft/testfx', -- GitLab