Merge pull request #17748 from storybookjs/tech/fix-filesystem-cache

fix filesystem cache missing return
This commit is contained in:
Michael Shilman 2022-03-18 13:39:18 +08:00 committed by GitHub
commit 52ab5f6add
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ export class FileSystemCache {
}
getSync(key: string, defaultValue?: any): any | typeof defaultValue {
this.internal.getSync(key, defaultValue);
return this.internal.getSync(key, defaultValue);
}
set(key: string, value: any): Promise<{ path: string }> {