Skip to content

Commit 0a40656

Browse files
committed
Extract common deps
1 parent d67ba9b commit 0a40656

File tree

5 files changed

+29
-12
lines changed

5 files changed

+29
-12
lines changed

packages/examples/workflow/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
"next": "16.0.0"
3636
},
3737
"devDependencies": {
38-
"typescript": "^5",
39-
"@types/node": "^20",
38+
"typescript": "catalog:",
39+
"@types/node": "catalog:",
4040
"@types/react": "^19"
4141
},
4242
"peerDependencies": {

packages/libs/backend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
},
5151
"dependencies": {
5252
"@restatedev/common": "workspace:*",
53-
"@restatedev/restate-sdk": "1.9.0",
54-
"@restatedev/restate-sdk-zod": "1.9.0",
55-
"@vercel/queue": "0.0.0-alpha.23",
56-
"@workflow/world": "^4.0.1-beta.1"
53+
"@restatedev/restate-sdk": "catalog:",
54+
"@restatedev/restate-sdk-zod": "catalog:",
55+
"@vercel/queue": "catalog:",
56+
"@workflow/world": "catalog:"
5757
}
5858
}

packages/libs/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"lint": "eslint ."
2929
},
3030
"dependencies": {
31-
"@restatedev/restate-sdk-core": "1.9.0",
32-
"@workflow/world": "^4.0.1-beta.1",
31+
"@restatedev/restate-sdk-core": "catalog:",
32+
"@workflow/world": "catalog:",
3333
"zod": "catalog:"
3434
},
3535
"devDependencies": {}

packages/libs/world/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
},
5050
"dependencies": {
5151
"@restatedev/common": "workspace:*",
52-
"@workflow/world": "^4.0.1-beta.1",
53-
"@restatedev/restate-sdk-clients": "1.9.0",
54-
"@restatedev/restate-sdk-zod": "1.9.0",
55-
"@vercel/queue": "0.0.0-alpha.23",
52+
"@workflow/world": "catalog:",
53+
"@restatedev/restate-sdk-clients": "catalog:",
54+
"@restatedev/restate-sdk-zod": "catalog:",
55+
"@vercel/queue": "catalog:",
5656
"workflow": "catalog:",
5757
"zod": "catalog:"
5858
}

pnpm-workspace.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,22 @@ packages:
44
- packages/examples/*
55

66
catalog:
7+
# Existing
78
zod: ^4.1.12
89
workflow: ^4.0.1-beta.2
10+
11+
# Restate SDK (all packages use same version)
12+
"@restatedev/restate-sdk": 1.9.0
13+
"@restatedev/restate-sdk-zod": 1.9.0
14+
"@restatedev/restate-sdk-clients": 1.9.0
15+
"@restatedev/restate-sdk-core": 1.9.0
16+
17+
# Workflow world
18+
"@workflow/world": ^4.0.1-beta.1
19+
20+
# Vercel
21+
"@vercel/queue": 0.0.0-alpha.23
22+
23+
# Development dependencies
24+
"@types/node": ^24.7.2
25+
typescript: ^5.9.3

0 commit comments

Comments
 (0)