From d7b5c0a33bba394facfb92ea90530dbc98ab738a Mon Sep 17 00:00:00 2001 From: vitaliytv Date: Sun, 26 Jul 2026 19:30:39 +0300 Subject: [PATCH] fix: ignore blocked graphql major --- taze.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 taze.config.ts diff --git a/taze.config.ts b/taze.config.ts new file mode 100644 index 0000000..7d2fd6f --- /dev/null +++ b/taze.config.ts @@ -0,0 +1,8 @@ +export default { + packageMode: { + // @graphql-inspector/core@7.1.3 peers graphql ^14 || ^15 || ^16 only: + // https://unpkg.com/@graphql-inspector/core@7.1.3/package.json. graphql@17 creates a nested + // graphql@16 and inspector diff() fails with "another module or realm". + graphql: 'ignore' + } +}