Skip to content

Commit af70e92

Browse files
committedMar 12, 2024
Update dev dependencies.
Includes fixes for the newer versions of Prettier, ESLint, and TypeScript. Note that there are now 3 TypeScript errors due to this TypeScript v5.4.2 bug: microsoft/TypeScript#57738
1 parent 614bb3d commit af70e92

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+409
-377
lines changed
 

‎Cache.test.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("Class `Cache`.", { concurrency: true }, () => {
1818
throws(() => {
1919
new Cache(
2020
// @ts-expect-error Testing invalid.
21-
null
21+
null,
2222
);
2323
}, new TypeError("Constructor argument 1 `store` must be an object."));
2424
});

‎CacheContext.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import React from "react";
1010
* @type {React.Context<Cache | undefined>}
1111
*/
1212
const CacheContext = React.createContext(
13-
/** @type {Cache | undefined} */ (undefined)
13+
/** @type {Cache | undefined} */ (undefined),
1414
);
1515

1616
CacheContext.displayName = "CacheContext";

0 commit comments

Comments
 (0)
Please sign in to comment.