Skip to content

Commit c4dbab3

Browse files
authored
feat(#352 typesync.v2 | cli): buildout a CLI from the hypergraph package to read schema/mapping files (#418)
1 parent 3f91e84 commit c4dbab3

27 files changed

Lines changed: 1414 additions & 348 deletions

File tree

apps/connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@tanstack/react-router-devtools": "^1.122.0",
2626
"@xstate/store": "^3.5.1",
2727
"clsx": "^2.1.1",
28-
"effect": "^3.17.1",
28+
"effect": "^3.17.3",
2929
"graphql-request": "^7.2.0",
3030
"react": "^19.1.0",
3131
"react-dom": "^19.1.0",

apps/create-hypergraph/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@
5555
"homepage": "https://github.com/graphprotocol/hypergraph/tree/main/apps/create-hypergraph-app#readme",
5656
"devDependencies": {
5757
"@effect/cli": "^0.69.0",
58-
"@effect/language-service": "^0.28.3",
58+
"@effect/language-service": "^0.31.2",
5959
"@effect/platform": "^0.90.0",
6060
"@effect/platform-node": "^0.94.0",
6161
"@effect/printer-ansi": "^0.45.0",
6262
"@effect/vitest": "^0.25.0",
6363
"@types/node": "^24.1.0",
64-
"effect": "^3.17.1",
64+
"effect": "^3.17.3",
6565
"execa": "^9.6.0",
6666
"tsdown": "^0.13.0",
6767
"tsx": "^4.20.3"

apps/create-hypergraph/template-vite-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@tanstack/react-router": "^1.129.2",
2323
"class-variance-authority": "^0.7.1",
2424
"clsx": "^2.1.1",
25-
"effect": "^3.17.1",
25+
"effect": "^3.17.3",
2626
"lucide-react": "^0.525.0",
2727
"react": "^19.1.0",
2828
"react-dom": "^19.1.0",

apps/events/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite --force",
8-
"preview": "vite preview"
8+
"preview": "vite preview",
9+
"typesync": "hypergraph typesync"
910
},
1011
"dependencies": {
1112
"@graphprotocol/grc-20": "^0.21.6",
@@ -22,7 +23,7 @@
2223
"@xstate/store": "^3.5.1",
2324
"class-variance-authority": "^0.7.1",
2425
"clsx": "^2.1.1",
25-
"effect": "^3.17.1",
26+
"effect": "^3.17.3",
2627
"framer-motion": "^12.10.1",
2728
"graphql-request": "^7.1.2",
2829
"isomorphic-ws": "^5.0.0",

apps/events/tsconfig.app.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
"@graphprotocol/hypergraph": ["../../packages/hypergraph/src/index.js"],
3636
"@graphprotocol/hypergraph/*": ["../../packages/hypergraph/src/*.js"],
3737
"@graphprotocol/hypergraph-react": ["../../packages/hypergraph-react/src/index.js"],
38-
"@graphprotocol/hypergraph-react/*": ["../../packages/hypergraph-react/src/*.js"],
39-
"@graphprotocol/typesync": ["../../packages/typesync/src/index.js"],
40-
"@graphprotocol/typesync/*": ["../../packages/typesync/src/*.js"]
38+
"@graphprotocol/hypergraph-react/*": ["../../packages/hypergraph-react/src/*.js"]
4139
}
4240
}
4341
}

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@privy-io/server-auth": "^1.26.0",
2020
"body-parser": "^2.2.0",
2121
"cors": "^2.8.5",
22-
"effect": "^3.17.1",
22+
"effect": "^3.17.3",
2323
"express": "^5.1.0",
2424
"prisma": "^6.7.0",
2525
"siwe": "^3.0.0",

apps/typesync/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
},
4343
"devDependencies": {
4444
"@effect/cli": "^0.69.0",
45-
"@effect/experimental": "^0.54.0",
46-
"@effect/language-service": "^0.28.3",
45+
"@effect/experimental": "^0.54.2",
46+
"@effect/language-service": "^0.31.2",
4747
"@effect/platform": "^0.90.0",
4848
"@effect/platform-node": "^0.94.0",
4949
"@effect/printer": "^0.45.0",
@@ -81,7 +81,7 @@
8181
"@tanstack/react-router-devtools": "^1.129.5",
8282
"better-sqlite3": "^12.2.0",
8383
"date-fns": "^4.1.0",
84-
"effect": "^3.17.1",
84+
"effect": "^3.17.3",
8585
"graphql": "^16.11.0",
8686
"graphql-request": "^7.2.0",
8787
"jotai": "^2.12.5",

packages/hypergraph-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@graphprotocol/grc-20": "^0.21.6",
5151
"@noble/hashes": "^1.8.0",
5252
"@tanstack/react-query": "^5.75.5",
53-
"effect": "^3.17.1",
53+
"effect": "^3.17.3",
5454
"graphql-request": "^7.1.2",
5555
"siwe": "^3.0.0",
5656
"uuid": "^11.1.0",

packages/hypergraph-react/tsconfig.build.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"extends": "./tsconfig.src.json",
33
"references": [
4-
{ "path": "../hypergraph/tsconfig.build.json" },
5-
{ "path": "../typesync/tsconfig.build.json" }
4+
{ "path": "../hypergraph/tsconfig.build.json" }
65
],
76
"compilerOptions": {
87
"tsBuildInfoFile": ".tsbuildinfo/build.tsbuildinfo",

packages/hypergraph-react/tsconfig.src.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src"],
44
"references": [
5-
{ "path": "../hypergraph/tsconfig.src.json" },
6-
{ "path": "../typesync/tsconfig.src.json" }
5+
{ "path": "../hypergraph/tsconfig.src.json" }
76
],
87
"compilerOptions": {
98
"tsBuildInfoFile": ".tsbuildinfo/src.tsbuildinfo",

0 commit comments

Comments
 (0)