File tree Expand file tree Collapse file tree 4 files changed +541
-3
lines changed
packages/app/src/cli/services/dev Expand file tree Collapse file tree 4 files changed +541
-3
lines changed Original file line number Diff line number Diff line change 3939 },
4040 "devDependencies" : {
4141 "@bugsnag/source-maps" : " ^2.3.1" ,
42- "@changesets/cli" : " 2.26.2 " ,
42+ "@changesets/cli" : " 2.27.12 " ,
4343 "@graphql-codegen/cli" : " 5.0.2" ,
4444 "@graphql-codegen/near-operation-file-preset" : " 3.0.0" ,
4545 "@nx/eslint-plugin" : " 19.8.14" ,
102102 "whatwg-url" : " 14.0.0" ,
103103 "supports-hyperlinks" : " 3.1.0" ,
104104 "@shopify/cli-hydrogen>@shopify/cli-kit" : " link:./packages/cli-kit" ,
105- "@shopify/cli-hydrogen>@shopify/plugin-cloudflare" : " link:./packages/plugin-cloudflare"
105+ "@shopify/cli-hydrogen>@shopify/plugin-cloudflare" : " link:./packages/plugin-cloudflare" ,
106+ "nanoid" : " 3.3.8"
106107 },
107108 "knip" : {
108109 "$schema" : " https://unpkg.com/knip@5/schema.json" ,
Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ import {EventEmitter} from 'events'
44export interface DevSessionStatus {
55 isReady : boolean
66 previewURL ?: string
7+ graphiqlURL ?: string
78}
89
9- class DevSessionStatusManager extends EventEmitter {
10+ export class DevSessionStatusManager extends EventEmitter {
1011 private currentStatus : DevSessionStatus = {
1112 isReady : false ,
1213 previewURL : undefined ,
14+ graphiqlURL : undefined ,
1315 }
1416
1517 updateStatus ( status : Partial < DevSessionStatus > ) {
@@ -29,6 +31,7 @@ class DevSessionStatusManager extends EventEmitter {
2931 this . currentStatus = {
3032 isReady : false ,
3133 previewURL : undefined ,
34+ graphiqlURL : undefined ,
3235 }
3336 }
3437}
You can’t perform that action at this time.
0 commit comments