mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:11:23 +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 {
|
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 }> {
|
set(key: string, value: any): Promise<{ path: string }> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user