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 7b44b8ead4dbb..9288c66f375e6 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.2.1", "path-browserify": "1.0.1", diff --git a/packages/json-machete/package.json b/packages/json-machete/package.json index 43e5f752122ec..ba8846ab26fc4 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.2", "@graphql-mesh/types": "0.91.1",