From b623547011ea44c2d374978d09b39abb7b35dfc7 Mon Sep 17 00:00:00 2001 From: Randy Oest Date: Tue, 30 Jul 2024 16:23:34 -0400 Subject: [PATCH 1/3] docs(README): update contributors --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dca3a08..929bcbe 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,10 @@ This project is automatically built and deployed to NPM via a GitHub Actions wor - - Jeff + + Randy
- Jeff Tomlinson + Randy Oest
@@ -84,10 +84,10 @@ This project is automatically built and deployed to NPM via a GitHub Actions wor - - Randy + + Jeff
- Randy Oest + Jeff Tomlinson
From 1d6fbf2eee5908eccfa195ab3fb33d340b2bd79a Mon Sep 17 00:00:00 2001 From: Marc Berger Date: Thu, 29 Aug 2024 21:25:12 -0700 Subject: [PATCH 2/3] feat: add emulsify ui kit to cli --- src/util/system/getAvailableSystems.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/system/getAvailableSystems.ts b/src/util/system/getAvailableSystems.ts index c26db58..ff402b6 100644 --- a/src/util/system/getAvailableSystems.ts +++ b/src/util/system/getAvailableSystems.ts @@ -19,5 +19,10 @@ export default async function getAvailableSystems(): Promise< repository: 'https://github.com/emulsify-ds/compound.git', platforms: ['drupal'], }, + { + name: 'emulsify-ui-kit', + repository: 'https://github.com/emulsify-ds/emulsify-ui-kit.git', + platforms: ['drupal'], + }, ]; } From fe18ed9f0f727d76cf06cfe8ca9323d6534f1aef Mon Sep 17 00:00:00 2001 From: Marc Berger Date: Thu, 29 Aug 2024 21:28:08 -0700 Subject: [PATCH 3/3] feat: add test coverage --- src/util/system/getAvailableSystems.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/system/getAvailableSystems.test.ts b/src/util/system/getAvailableSystems.test.ts index fb4286e..2378b2d 100644 --- a/src/util/system/getAvailableSystems.test.ts +++ b/src/util/system/getAvailableSystems.test.ts @@ -9,6 +9,11 @@ describe('getAvailableSystems', () => { repository: 'https://github.com/emulsify-ds/compound.git', platforms: ['drupal'], }, + { + name: 'emulsify-ui-kit', + repository: 'https://github.com/emulsify-ds/emulsify-ui-kit.git', + platforms: ['drupal'], + }, ]); }); });