Skip to content

Commit c7d6f6b

Browse files
committed
fix(cacache): export getCacache function
Make getCacache() publicly accessible for external use by cache-with-ttl's getAll() method. Changes: - Export getCacache() function in src/cacache.ts
1 parent 5bf84da commit c7d6f6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cacache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface RemoveOptions {
4141
/**
4242
* Get the cacache module for cache operations.
4343
*/
44-
function getCacache() {
44+
export function getCacache() {
4545
return /*@__PURE__*/ require('./external/cacache')
4646
}
4747

0 commit comments

Comments
 (0)