File tree Expand file tree Collapse file tree 3 files changed +30
-8
lines changed
Expand file tree Collapse file tree 3 files changed +30
-8
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://codesandbox.io/schemas/tasks.json" ,
3+ "setupTasks" : [
4+ {
5+ "name" : " Install" ,
6+ "command" : " npm i"
7+ },
8+ {
9+ "name" : " Services" ,
10+ "command" : " npm run services"
11+ },
12+ {
13+ "name" : " Compose" ,
14+ "command" : " npm run compose"
15+ }
16+ ],
17+ "tasks" : {
18+ "gateway" : {
19+ "name" : " Start Hive Gateway" ,
20+ "command" : " npm start" ,
21+ "runAtStart" : true ,
22+ "preview" : {
23+ "port" : 4000
24+ }
25+ }
26+ }
27+ }
Original file line number Diff line number Diff line change 22 "name" : " @example/extra-fields" ,
33 "private" : true ,
44 "scripts" : {
5- "start" : " conc --kill-others-on-fail 'tsx services/foo.ts' 'tsx services/bar.ts' 'sleep 1 && mesh-compose -o supergraph.graphql && hive-gateway supergraph'"
5+ "compose" : " mesh-compose -o supergraph.graphql" ,
6+ "services" : " conc --kill-others-on-fail 'tsx services/foo.ts' 'tsx services/bar.ts'" ,
7+ "start" : " hive-gateway supergraph'"
68 },
79 "dependencies" : {
810 "@graphql-hive/gateway" : " ^1.7.3" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments