diff --git a/.changeset/cold-jobs-walk.md b/.changeset/cold-jobs-walk.md new file mode 100644 index 0000000000000..3414cbdbc2921 --- /dev/null +++ b/.changeset/cold-jobs-walk.md @@ -0,0 +1,6 @@ +--- +'@graphql-mesh/cross-helpers': patch +'json-machete': patch +--- + +fix(deps): add missing graphql peer deps diff --git a/packages/cross-helpers/package.json b/packages/cross-helpers/package.json index 157dbc67216c2..67212316a2be2 100644 --- a/packages/cross-helpers/package.json +++ b/packages/cross-helpers/package.json @@ -13,6 +13,9 @@ "browser": "browser.js", "types": "index.d.ts", "typings": "./index.d.ts", + "peerDependencies": { + "graphql": "*" + }, "dependencies": { "@graphql-tools/utils": "9.1.3", "path-browserify": "1.0.1", diff --git a/packages/json-machete/package.json b/packages/json-machete/package.json index 3c0bbe168eca3..20a6dc79651d4 100644 --- a/packages/json-machete/package.json +++ b/packages/json-machete/package.json @@ -28,6 +28,9 @@ "./package.json": "./package.json" }, "typings": "dist/typings/index.d.ts", + "peerDependencies": { + "graphql": "*" + }, "dependencies": { "@graphql-mesh/cross-helpers": "0.3.0", "@graphql-mesh/types": "0.89.2",