Skip to content

Commit 6e89ad3

Browse files
authored
add bucketco to ecosystem (#674)
## This PR - adds Bucket to the ecosystem ### Notes I've removed the fill from the SVG logo so that it works in both light and dark modes. Direct link to the preview: https://deploy-preview-674--openfeature.netlify.app/ecosystem?instant_search%5BrefinementList%5D%5Bvendor%5D%5B0%5D=Bucket --------- Signed-off-by: Michael Beemer <[email protected]>
1 parent 23eb34b commit 6e89ad3

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

src/datasets/providers/bucket.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import BucketSvg from '@site/static/img/bucketco-no-fill.svg';
2+
3+
import { Provider } from '.';
4+
5+
export const Bucket: Provider = {
6+
name: 'Bucket',
7+
logo: BucketSvg,
8+
technologies: [
9+
{
10+
technology: 'JavaScript',
11+
vendorOfficial: true,
12+
href: 'https://github.com/bucketco/bucket-javascript-sdk/tree/main/packages/openfeature-node-provider',
13+
category: ['Server'],
14+
},
15+
],
16+
};

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { ComponentType, SVGProps } from 'react';
22

3+
import { Bucket } from './bucket';
34
import { CloudBees } from './cloudbees';
45
import { ConfigCat } from './configcat';
56
import { DevCycle } from './devcycle';
@@ -23,6 +24,7 @@ import { MultiProvider } from './multi-provider';
2324
import { Hypertune } from './hypertune';
2425

2526
export const PROVIDERS: Provider[] = [
27+
Bucket,
2628
CloudBees,
2729
ConfigCat,
2830
DevCycle,

static/img/bucketco-no-fill.svg

Lines changed: 13 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)