Skip to content

Commit a92e11f

Browse files
committed
fix: forgot to save the file
1 parent 0c7234c commit a92e11f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

packages/workshop-utils/src/cache.server.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ export const dirModifiedTimeCache = makeSingletonCache<number>(
3939
'DirModifiedTimeCache',
4040
)
4141
export const connectionCache = makeSingletonCache<boolean>('ConnectionCache')
42+
export const checkForUpdatesCache = makeSingletonCache<{
43+
updatesAvailable: boolean
44+
localCommit: string
45+
remoteCommit: string
46+
diffLink: string | null
47+
}>('CheckForUpdatesCache')
4248

4349
const cacheDir = path.join(os.homedir(), '.epicshop', 'cache')
4450

0 commit comments

Comments
 (0)