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 Tomlinson
+ Randy Oest
|
@@ -84,10 +84,10 @@ This project is automatically built and deployed to NPM via a GitHub Actions wor
|
-
-
+
+
- Randy Oest
+ Jeff Tomlinson
|
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'],
+ },
]);
});
});
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'],
+ },
];
}
|