mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Merge pull request #17748 from storybookjs/tech/fix-filesystem-cache
fix filesystem cache missing return
This commit is contained in:
commit
52ab5f6add
@ -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 }> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user