Skip to content

Commit d647f41

Browse files
committed
chore: update winterCG to winterTC
1 parent 4348b50 commit d647f41

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

docs/blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ head:
7979
title: 'Introducing Elysia 0.6 - This Game',
8080
href: '/blog/elysia-06',
8181
cover: 'this-game.webp',
82-
detail: 'Introducing re-imagined plugin model, dynamic mode, better developer experience with declarative custom error, customizable loose and strict path mapping, TypeBox 0.30 and WinterCG framework interlop. Pushing the boundary of what is possible once again'
82+
detail: 'Introducing re-imagined plugin model, dynamic mode, better developer experience with declarative custom error, customizable loose and strict path mapping, TypeBox 0.30 and WinterTC framework interlop. Pushing the boundary of what is possible once again'
8383
},
8484
{
8585
title: 'Accelerate your next Prisma server with Elysia',

docs/integrations/astro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ head:
77

88
- - meta
99
- name: 'description'
10-
content: You can run Elysia on Astro. Elysia will work normally as expected because of WinterCG compliance.
10+
content: You can run Elysia on Astro. Elysia will work normally as expected because of WinterTC compliance.
1111

1212
- - meta
1313
- property: 'og:description'
@@ -52,12 +52,12 @@ export const GET = handle // [!code ++]
5252
export const POST = handle // [!code ++]
5353
```
5454

55-
Elysia will work normally as expected because of WinterCG compliance.
55+
Elysia will work normally as expected because of WinterTC compliance.
5656

5757
We recommend running [Astro on Bun](https://docs.astro.build/en/recipes/bun) as Elysia is designed to be run on Bun.
5858

5959
::: tip
60-
You can run Elysia server without running Astro on Bun thanks to WinterCG support.
60+
You can run Elysia server without running Astro on Bun thanks to WinterTC support.
6161
:::
6262

6363
With this approach, you can have co-location of both frontend and backend in a single repository and have End-to-end type-safety with Eden.

docs/integrations/expo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ head:
77

88
- - meta
99
- name: 'description'
10-
content: With Expo App Router, you can run Elysia on Expo route. Elysia will work normally as expected thanks to WinterCG compliance.
10+
content: With Expo App Router, you can run Elysia on Expo route. Elysia will work normally as expected thanks to WinterTC compliance.
1111

1212
- - meta
1313
- property: 'og:description'

docs/integrations/nextjs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ head:
77

88
- - meta
99
- name: 'description'
10-
content: With Next.js App Router, you can run Elysia on Next.js routes. Elysia will work normally as expected because of WinterCG compliance.
10+
content: With Next.js App Router, you can run Elysia on Next.js routes. Elysia will work normally as expected because of WinterTC compliance.
1111

1212
- - meta
1313
- property: 'og:description'
@@ -41,7 +41,7 @@ export const POST = app.fetch // [!code ++]
4141

4242
:::
4343

44-
Elysia will work normally as expected because of WinterCG compliance.
44+
Elysia will work normally as expected because of WinterTC compliance.
4545

4646
You can treat the Elysia server as a normal Next.js API route.
4747

docs/patterns/mount.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ head:
77

88
- - meta
99
- name: 'description'
10-
content: Applying WinterCG interoperable code to run with Elysia or vice-versa.
10+
content: Applying WinterTC interoperable code to run with Elysia or vice-versa.
1111

1212
- - meta
1313
- property: 'og:description'
@@ -21,7 +21,7 @@ It allows web servers to run interoperably across runtimes by using [Request](ht
2121

2222
Elysia is WinterTC compliant. Optimized to run on Bun, but also support other runtimes if possible.
2323

24-
This allows any framework or code that is WinterCG compliant to be run together, allowing frameworks like Elysia, Hono, Remix, Itty Router to run together in a simple function.
24+
This allows any framework or code that is WinterTC compliant to be run together, allowing frameworks like Elysia, Hono, Remix, Itty Router to run together in a simple function.
2525

2626
## Mount
2727
To use **.mount**, [simply pass a `fetch` function](https://twitter.com/saltyAom/status/1684786233594290176):

docs/patterns/unit-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ head:
1616

1717
# Unit Test
1818

19-
Being WinterCG compliant, we can use Request / Response classes to test an Elysia server.
19+
Being WinterTC compliant, we can use Request / Response classes to test an Elysia server.
2020

2121
Elysia provides the **Elysia.handle** method, which accepts a Web Standard [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request) and returns [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response), simulating an HTTP Request.
2222

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Don't forget to update `tsconfig.json` to include `compilerOptions.strict` to `t
348348

349349
<template v-slot:web-standard>
350350

351-
Elysia is a WinterCG compliance library, which means if a framework or runtime supports Web Standard Request/Response, it can run Elysia.
351+
Elysia is a WinterTC compliant library, which means if a framework or runtime supports Web Standard Request/Response, it can run Elysia.
352352

353353
First, install Elysia with the command below:
354354

0 commit comments

Comments
 (0)