Skip to content

Commit

Permalink
remove helix from products (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaMachina committed Jun 6, 2023
1 parent 5a99366 commit 56e9704
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 32 deletions.
6 changes: 6 additions & 0 deletions .changeset/two-owls-push.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@theguild/components': patch
'@theguild/algolia': patch
---

remove Helix from products
21 changes: 10 additions & 11 deletions packages/algolia/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
export type AlgoliaRecordSource =
| 'Hive'
| 'Angular'
| 'Code Generator'
| 'Conductor'
| 'Yoga'
| 'Config'
| 'Envelop'
| 'ESLint'
| 'feTS'
| 'Hive'
| 'Inspector'
| 'Code Generator'
| 'KitQL'
| 'Mesh'
| 'Tools'
| 'Modules'
| 'ESLint'
| 'Config'
| 'Scalars'
| 'Helix'
| 'Shield'
| 'SOFA'
| 'SSE'
| 'Stitching'
| 'Angular'
| 'Tools'
| 'WhatsApp'
| 'KitQL'
| 'WS'
| 'SSE'
| 'feTS';
| 'Yoga';

export interface AlgoliaRecord {
objectID: string;
Expand Down
5 changes: 1 addition & 4 deletions packages/components/src/logos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export { ReactComponent as ConductorLogo } from './conductor.svg';
export { ReactComponent as ConfigLogo } from './config.svg';
export { ReactComponent as EnvelopLogo } from './envelop.svg';
export { ReactComponent as ESLintLogo } from './eslint.svg';
export { ReactComponent as FetsLogo } from './fets.svg';
export { ReactComponent as GuildLogo } from './guild.svg';
export { ReactComponent as HelixLogo } from './helix.svg';
export { ReactComponent as HiveLogo } from './hive.svg';
export { ReactComponent as InspectorLogo } from './inspector.svg';
export { ReactComponent as KitQLLogo } from './kitql.svg';
Expand All @@ -15,12 +15,9 @@ export { ReactComponent as ScalarsLogo } from './scalars.svg';
export { ReactComponent as ShieldLogo } from './shield.svg';
export { ReactComponent as SofaLogo } from './sofa.svg';
export { ReactComponent as SSELogo } from './sse.svg';
export { ReactComponent as StencilLogo } from './stencil.svg';
export { ReactComponent as StitchingLogo } from './stitching.svg';
export { ReactComponent as SwiftLogo } from './swift.svg';
export { TheGuild } from './the-guild';
export { ReactComponent as ToolsLogo } from './tools.svg';
export { ReactComponent as WhatsAppLogo } from './whatsapp.svg';
export { ReactComponent as WSLogo } from './ws.svg';
export { ReactComponent as YogaLogo } from './yoga.svg';
export { ReactComponent as FetsLogo } from './fets.svg';
11 changes: 1 addition & 10 deletions packages/components/src/products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
EnvelopLogo,
ESLintLogo,
FetsLogo,
HelixLogo,
HiveLogo,
InspectorLogo,
KitQLLogo,
Expand Down Expand Up @@ -38,7 +37,6 @@ export type ProductType =
| 'ESLINT'
| 'CONFIG'
| 'SCALARS'
| 'HELIX'
| 'SHIELD'
| 'SOFA'
| 'STITCHING'
Expand Down Expand Up @@ -149,7 +147,7 @@ export const PRODUCTS: Record<
title: 'Build and consume REST APIs with the e2e type safety using TypeScript and OpenAPI',
href: 'https://the-guild.dev/fets',
logo: FetsLogo,
primaryColor: '#3178C6',
primaryColor: '#3178c6',
},
SCALARS: {
name: 'Scalars',
Expand All @@ -158,13 +156,6 @@ export const PRODUCTS: Record<
logo: ScalarsLogo,
primaryColor: '#f38',
},
HELIX: {
name: 'Helix',
title: 'A highly evolved GraphQL HTTP server',
href: 'https://graphql-helix.com',
logo: HelixLogo,
primaryColor: '#03a9f4',
},
SHIELD: {
name: 'Shield',
title: 'GraphQL permissions framework for complex authorisation systems',
Expand Down
11 changes: 5 additions & 6 deletions packages/components/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default defineConfig([
'CodeGeneratorLogo',
'ConductorLogo',
'ConfigLogo',
'ESLintLogo',
'EnvelopLogo',
'ESLintLogo',
'FetsLogo',
'GuildLogo',
'HelixLogo',
'HiveLogo',
'InspectorLogo',
'KitQLLogo',
Expand All @@ -42,14 +42,13 @@ export default defineConfig([
'ScalarsLogo',
'ShieldLogo',
'SofaLogo',
'SwiftLogo',
'SSELogo',
'StitchingLogo',
'TheGuild',
'ToolsLogo',
'WhatsAppLogo',
'YogaLogo',
'StitchingLogo',
'WSLogo',
'SSELogo',
'YogaLogo',
];
await fs.writeFile(
'./dist/logos.d.ts',
Expand Down
2 changes: 1 addition & 1 deletion packages/og-image/src/handler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { PRODUCTS } from '@theguild/components/products';
import { LeftCircle, RightCircle, RightSmallCircle } from './components';
import { shade, toImage, toSVG } from './utils';

const { WHATSAPP: _, HELIX: _2, ...filteredProducts } = PRODUCTS;
const { WHATSAPP: _, ...filteredProducts } = PRODUCTS;

const products = {
...filteredProducts,
Expand Down

1 comment on commit 56e9704

@vercel
Copy link

@vercel vercel bot commented on 56e9704 Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.