Skip to content

Commit a07c7fb

Browse files
committed
chore: Remove Bucket and replace with Reflag
Signed-off-by: Alexandru Ciobanu <[email protected]>
1 parent c5b1784 commit a07c7fb

File tree

5 files changed

+27
-37
lines changed

5 files changed

+27
-37
lines changed

src/datasets/providers/bucket.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/datasets/providers/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { ComponentType, SVGProps } from 'react';
22
import { Category, EcosystemElement, Technology } from '../types';
33
import { ABTasty } from './abtasty';
44
import { AwsSSM } from './awsssm';
5-
import { Bucket } from './bucket';
65
import { Bucketeer } from './bucketeer';
76
import { CloudBees } from './cloudbees';
87
import { ConfigCat } from './configcat';
@@ -16,6 +15,7 @@ import { Harness } from './harness';
1615
import { Kameleoon } from './kameleoon';
1716
import { LaunchDarkly } from './launchdarkly';
1817
import { PostHog } from './posthog';
18+
import { Reflag } from './reflag';
1919
import { Split } from './split';
2020
import { Unleash } from './unleash';
2121
import { Statsig } from './statsig';
@@ -47,7 +47,6 @@ const childTechnologyMap = SDKS.reduce(
4747
export const PROVIDERS: Provider[] = [
4848
ABTasty,
4949
AwsSSM,
50-
Bucket,
5150
Bucketeer,
5251
CloudBees,
5352
Confidence,
@@ -65,6 +64,7 @@ export const PROVIDERS: Provider[] = [
6564
Kameleoon,
6665
LaunchDarkly,
6766
PostHog,
67+
Reflag,
6868
Split,
6969
Statsig,
7070
Unleash,

src/datasets/providers/reflag.ts

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

static/img/bucketco-no-fill.svg

Lines changed: 0 additions & 13 deletions
This file was deleted.

static/img/reflag-no-fill.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)