@trpc/server 11.0.0-next-alpha.158 → 11.0.0-next-alpha.162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -24,16 +24,16 @@ Full documentation for `@trpc/server` can be found [here](https://trpc.io/docs/r
|
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
26
|
# npm
|
|
27
|
-
npm install @trpc/server
|
|
27
|
+
npm install @trpc/server@next
|
|
28
28
|
|
|
29
29
|
# Yarn
|
|
30
|
-
yarn add @trpc/server
|
|
30
|
+
yarn add @trpc/server@next
|
|
31
31
|
|
|
32
32
|
# pnpm
|
|
33
|
-
pnpm add @trpc/server
|
|
33
|
+
pnpm add @trpc/server@next
|
|
34
34
|
|
|
35
35
|
# Bun
|
|
36
|
-
bun add @trpc/server
|
|
36
|
+
bun add @trpc/server@next
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
We also recommend installing `zod` to validate procedure inputs.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trpc/server",
|
|
3
|
-
"version": "11.0.0-next-alpha.
|
|
3
|
+
"version": "11.0.0-next-alpha.162+ab22b41f7",
|
|
4
4
|
"description": "The tRPC server library",
|
|
5
5
|
"author": "KATT",
|
|
6
6
|
"license": "MIT",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"access": "public"
|
|
132
132
|
},
|
|
133
133
|
"dependencies": {
|
|
134
|
-
"@trpc/core": "11.0.0-next-alpha.
|
|
134
|
+
"@trpc/core": "11.0.0-next-alpha.162+ab22b41f7"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
137
|
"@fastify/websocket": "^7.1.2",
|
|
@@ -170,5 +170,5 @@
|
|
|
170
170
|
"funding": [
|
|
171
171
|
"https://trpc.io/sponsor"
|
|
172
172
|
],
|
|
173
|
-
"gitHead": "
|
|
173
|
+
"gitHead": "ab22b41f7bb68c4026f32d1faa7137fd9c76d510"
|
|
174
174
|
}
|