github-actions
released this
29 Jul 09:27
·
32 commits
to main
since this release
Minor Changes
-
93239dc: Drop the
execute
constructor argument option.
Please useInMemoryLiveQueryStore.makeExecute
instead.Old
import { InMemoryLiveQueryStore } from "@n1ru4l/in-memory-live-query-store"; import { execute as executeImplementation } from "graphql"; const liveQueryStore = new InMemoryLiveQueryStore({ execute }); const execute = liveQueryStore.execute;
New
import { InMemoryLiveQueryStore } from "@n1ru4l/in-memory-live-query-store"; import { execute as executeImplementation } from "graphql"; const liveQueryStore = new InMemoryLiveQueryStore(); const execute = liveQueryStore.makeExecute(executeImplementation);
-
f585fb3: Support TypeScript ESM module resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js
Patch Changes
- Updated dependencies [f585fb3]
- @n1ru4l/[email protected]