Skip to content

Commit d3c79d4

Browse files
feat: add devcycle react provider docs, add React as a technology
1 parent 48a058c commit d3c79d4

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

src/datasets/providers/devcycle.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ export const DevCycle: Provider = {
3535
href: 'https://docs.devcycle.com/sdk/client-side-sdks/javascript/javascript-openfeature',
3636
category: ['Client'],
3737
},
38+
{
39+
technology: 'React',
40+
vendorOfficial: true,
41+
href: 'https://docs.devcycle.com/sdk/client-side-sdks/react/react-openfeature',
42+
category: ['Client'],
43+
},
3844
{
3945
technology: 'PHP',
4046
vendorOfficial: true,

src/datasets/sdks/react.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const React: SDK = {
99
branch: 'main',
1010
folder: '/packages/react',
1111
logoKey: 'react-no-fill.svg',
12-
technology: 'JavaScript',
12+
technology: 'React',
1313
href: '/docs/reference/technologies/client/web/react',
1414
includeInSupportMatrix: false,
1515
};

src/datasets/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export type Technology =
2222
| 'Python'
2323
| 'Swift'
2424
| 'Rust'
25-
| 'Ruby';
25+
| 'Ruby'
26+
| 'React';
2627

2728
export type Category = 'Server' | 'Client';
2829
export type Type = 'Hook' | 'Provider' | 'SDK';

0 commit comments

Comments
 (0)