This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
2,210 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[version] | ||
^0.68.0 | ||
^0.87.0 | ||
|
||
[ignore] | ||
.*/__tests__/_output/.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
type findCacheDirOptions = { | ||
name: string, | ||
files: Array<string>, | ||
cwd: string, | ||
create: boolean, | ||
thunk: boolean, | ||
}; | ||
type findCacheDirOptions = {| | ||
name?: string, | ||
files?: Array<string>, | ||
cwd?: string, | ||
create?: boolean, | ||
thunk?: boolean, | ||
|}; | ||
|
||
declare module "find-cache-dir" { | ||
declare function findCacheDir(options: findCacheDirOptions): string; | ||
declare module.exports: findCacheDir; | ||
declare module.exports: typeof findCacheDir; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
declare module "lru-memoize" { | ||
declare function memoizeInstance(func: Function): Function; | ||
declare function memoize(num: number): memoizeInstance; | ||
declare module.exports: memoize; | ||
declare function memoize(num: number): typeof memoizeInstance; | ||
declare module.exports: typeof memoize; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.