-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from RobinTail/fix-lru-cache-dep
Using `lru-cache: ^10.4.3`
- Loading branch information
Showing
5 changed files
with
43 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@arethetypeswrong/core": patch | ||
--- | ||
|
||
Changed version of lru-cache dependency to ^10.4.3 in order to fix compatibility with Node.js 18. |
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]" | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
diff --git a/dist/commonjs/index.d.ts b/dist/commonjs/index.d.ts | ||
index f59de7602a528afde714e56dcf8c25ee496e39fb..0692e188a017d277fe843efb420b1f2c3cd28157 100644 | ||
--- a/dist/commonjs/index.d.ts | ||
+++ b/dist/commonjs/index.d.ts | ||
@@ -837,7 +837,7 @@ export declare namespace LRUCache { | ||
* | ||
* Changing any of these will alter the defaults for subsequent method calls. | ||
*/ | ||
-export declare class LRUCache<K extends {}, V extends {}, FC = unknown> implements Map<K, V> { | ||
+export declare class LRUCache<K extends {}, V extends {}, FC = unknown> { | ||
#private; | ||
/** | ||
* {@link LRUCache.OptionsBase.ttl} | ||
diff --git a/dist/esm/index.d.ts b/dist/esm/index.d.ts | ||
index f59de7602a528afde714e56dcf8c25ee496e39fb..0692e188a017d277fe843efb420b1f2c3cd28157 100644 | ||
--- a/dist/esm/index.d.ts | ||
+++ b/dist/esm/index.d.ts | ||
@@ -837,7 +837,7 @@ export declare namespace LRUCache { | ||
* | ||
* Changing any of these will alter the defaults for subsequent method calls. | ||
*/ | ||
-export declare class LRUCache<K extends {}, V extends {}, FC = unknown> implements Map<K, V> { | ||
+export declare class LRUCache<K extends {}, V extends {}, FC = unknown> { | ||
#private; | ||
/** | ||
* {@link LRUCache.OptionsBase.ttl} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.