From 4f11ff1991e567b3856d115467f353986d2c7987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Ve=C4=8Derek?= Date: Sat, 1 Jun 2024 13:55:08 +0200 Subject: [PATCH] chore: address issues uncovered by `@yarnpkg/doctor` - undeclared dependencies - strings referencing the node_modules directory For more details: https://yarnpkg.com/migration/pnp\#calling-the-doctor --- .gitignore | 1 + jest.config.js | 2 +- jest.project.js | 4 +- packages/plugins/c-sharp/c-sharp/package.json | 6 +- .../typescript/apollo-angular/package.json | 3 + .../typescript/generic-sdk/package.json | 5 + .../typescript/graphql-apollo/package.json | 2 + .../graphql-files-modules/package.json | 3 + .../typescript/graphql-request/package.json | 4 + .../plugins/typescript/jit-sdk/package.json | 3 + .../typescript/react-apollo/package.json | 5 +- .../typescript/react-query/package.json | 5 + .../typescript/solid-query/package.json | 5 + packages/plugins/typescript/urql/package.json | 5 + .../vue-apollo-smart-ops/package.json | 6 + .../typescript/vue-apollo/package.json | 6 + .../plugins/typescript/vue-urql/package.json | 5 + .../presets/near-operation-file/package.json | 4 +- yarn.lock | 117 ++++++++++++++++++ 19 files changed, 184 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index b5d31c7bb..a1e7af1fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.cache/ .idea/ .npmrc .yarnclean diff --git a/jest.config.js b/jest.config.js index 604ce0621..2fd89d758 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,5 +7,5 @@ module.exports = : { rootDir: __dirname, projects: ['/packages/**/*/jest.config.js'], - resolver: './node_modules/bob-the-bundler/jest-resolver.cjs', + resolver: require.resolve('bob-the-bundler/jest-resolver'), }; diff --git a/jest.project.js b/jest.project.js index 45f727881..4aa7b98ab 100644 --- a/jest.project.js +++ b/jest.project.js @@ -20,11 +20,11 @@ module.exports = ({ dirname, projectMode = true }) => { moduleNameMapper: pathsToModuleNameMapper(tsconfig.compilerOptions.paths, { prefix: `${ROOT_DIR}/`, }), - cacheDirectory: resolve(ROOT_DIR, `${CI ? '' : 'node_modules/'}.cache/jest`), + cacheDirectory: resolve(ROOT_DIR, `.cache/jest`), setupFiles: [`${ROOT_DIR}/dev-test/setup.js`], collectCoverage: false, testTimeout: 20000, - resolver: './node_modules/bob-the-bundler/jest-resolver.cjs', + resolver: require.resolve('bob-the-bundler/jest-resolver'), snapshotFormat: { escapeString: false, printBasicPrototype: false, diff --git a/packages/plugins/c-sharp/c-sharp/package.json b/packages/plugins/c-sharp/c-sharp/package.json index a6c31c769..6892a2ff9 100644 --- a/packages/plugins/c-sharp/c-sharp/package.json +++ b/packages/plugins/c-sharp/c-sharp/package.json @@ -33,7 +33,8 @@ "test": "jest --no-watchman" }, "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", + "graphql-tag": "2.12.6" }, "dependencies": { "@graphql-codegen/c-sharp-common": "1.0.0", @@ -44,7 +45,8 @@ "unixify": "^1.0.0" }, "devDependencies": { - "@graphql-codegen/testing": "1.18.0" + "@graphql-codegen/testing": "1.18.0", + "jest-each": "^28.1.3" }, "publishConfig": { "directory": "dist", diff --git a/packages/plugins/typescript/apollo-angular/package.json b/packages/plugins/typescript/apollo-angular/package.json index cceb6afb9..6b1d162a7 100644 --- a/packages/plugins/typescript/apollo-angular/package.json +++ b/packages/plugins/typescript/apollo-angular/package.json @@ -47,6 +47,9 @@ "tslib": "~2.6.0" }, "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", "graphql-tag": "2.12.6" }, "publishConfig": { diff --git a/packages/plugins/typescript/generic-sdk/package.json b/packages/plugins/typescript/generic-sdk/package.json index 2f4beb8ff..1c94170dd 100644 --- a/packages/plugins/typescript/generic-sdk/package.json +++ b/packages/plugins/typescript/generic-sdk/package.json @@ -46,6 +46,11 @@ "auto-bind": "~4.0.0", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "^2.5.6" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/graphql-apollo/package.json b/packages/plugins/typescript/graphql-apollo/package.json index 21df1c269..0ac53e705 100644 --- a/packages/plugins/typescript/graphql-apollo/package.json +++ b/packages/plugins/typescript/graphql-apollo/package.json @@ -51,9 +51,11 @@ "@apollo/client": "3.10.6", "@graphql-codegen/core": "2.6.3", "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", "@graphql-codegen/typescript-operations": "2.5.6", "@graphql-tools/schema": "10.0.4", "cross-fetch": "3.1.8", + "fs-extra": "^11.2.0", "react": "18.3.1" }, "publishConfig": { diff --git a/packages/plugins/typescript/graphql-files-modules/package.json b/packages/plugins/typescript/graphql-files-modules/package.json index 61b463dad..597c66198 100644 --- a/packages/plugins/typescript/graphql-files-modules/package.json +++ b/packages/plugins/typescript/graphql-files-modules/package.json @@ -43,6 +43,9 @@ "@graphql-codegen/plugin-helpers": "^3.0.0", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/graphql-request/package.json b/packages/plugins/typescript/graphql-request/package.json index 56def9aee..66ca7a98c 100644 --- a/packages/plugins/typescript/graphql-request/package.json +++ b/packages/plugins/typescript/graphql-request/package.json @@ -48,8 +48,12 @@ "tslib": "~2.6.0" }, "devDependencies": { + "@graphql-codegen/core": "2.6.3", "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", "@graphql-tools/schema": "10.0.4", + "fs-extra": "^11.2.0", "graphql-request": "6.0.0" }, "publishConfig": { diff --git a/packages/plugins/typescript/jit-sdk/package.json b/packages/plugins/typescript/jit-sdk/package.json index 5e76d5e06..d7d364fc6 100644 --- a/packages/plugins/typescript/jit-sdk/package.json +++ b/packages/plugins/typescript/jit-sdk/package.json @@ -49,6 +49,9 @@ "tslib": "~2.6.0" }, "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", "@graphql-tools/utils": "10.2.2", "graphql-jit": "0.8.6" }, diff --git a/packages/plugins/typescript/react-apollo/package.json b/packages/plugins/typescript/react-apollo/package.json index 72d7bb0a0..78688b4b5 100644 --- a/packages/plugins/typescript/react-apollo/package.json +++ b/packages/plugins/typescript/react-apollo/package.json @@ -48,7 +48,10 @@ "tslib": "~2.6.0" }, "devDependencies": { - "@graphql-codegen/testing": "1.18.0" + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", + "jest-docblock": "28.1.1" }, "publishConfig": { "directory": "dist", diff --git a/packages/plugins/typescript/react-query/package.json b/packages/plugins/typescript/react-query/package.json index 53df298f0..0acac026b 100644 --- a/packages/plugins/typescript/react-query/package.json +++ b/packages/plugins/typescript/react-query/package.json @@ -46,6 +46,11 @@ "change-case-all": "1.0.15", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/solid-query/package.json b/packages/plugins/typescript/solid-query/package.json index 046d97cf9..4ca17a629 100644 --- a/packages/plugins/typescript/solid-query/package.json +++ b/packages/plugins/typescript/solid-query/package.json @@ -46,6 +46,11 @@ "change-case-all": "1.0.15", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/urql/package.json b/packages/plugins/typescript/urql/package.json index 7d7413817..1e9407f66 100644 --- a/packages/plugins/typescript/urql/package.json +++ b/packages/plugins/typescript/urql/package.json @@ -46,6 +46,11 @@ "auto-bind": "~4.0.0", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/vue-apollo-smart-ops/package.json b/packages/plugins/typescript/vue-apollo-smart-ops/package.json index 665e06416..9170fec08 100644 --- a/packages/plugins/typescript/vue-apollo-smart-ops/package.json +++ b/packages/plugins/typescript/vue-apollo-smart-ops/package.json @@ -47,6 +47,12 @@ "change-case-all": "1.0.15", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", + "jest-docblock": "28.1.1" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/vue-apollo/package.json b/packages/plugins/typescript/vue-apollo/package.json index ab7175b87..e5189662a 100644 --- a/packages/plugins/typescript/vue-apollo/package.json +++ b/packages/plugins/typescript/vue-apollo/package.json @@ -47,6 +47,12 @@ "change-case-all": "1.0.15", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6", + "jest-docblock": "28.1.1" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/plugins/typescript/vue-urql/package.json b/packages/plugins/typescript/vue-urql/package.json index eff47abe1..03d95b766 100644 --- a/packages/plugins/typescript/vue-urql/package.json +++ b/packages/plugins/typescript/vue-urql/package.json @@ -47,6 +47,11 @@ "change-case-all": "1.0.15", "tslib": "~2.6.0" }, + "devDependencies": { + "@graphql-codegen/testing": "1.18.0", + "@graphql-codegen/typescript": "^2.8.1", + "@graphql-codegen/typescript-operations": "2.5.6" + }, "publishConfig": { "directory": "dist", "access": "public" diff --git a/packages/presets/near-operation-file/package.json b/packages/presets/near-operation-file/package.json index e8fb63880..5694c97cc 100644 --- a/packages/presets/near-operation-file/package.json +++ b/packages/presets/near-operation-file/package.json @@ -49,7 +49,9 @@ }, "devDependencies": { "@graphql-codegen/cli": "2.13.9", - "@types/parse-filepath": "1.0.2" + "@types/parse-filepath": "1.0.2", + "graphql-request": "^6.0.0", + "graphql-tag": "^2.12.6" }, "publishConfig": { "directory": "dist", diff --git a/yarn.lock b/yarn.lock index 80cadf9b8..55bf36da8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2580,10 +2580,12 @@ __metadata: "@graphql-codegen/testing": "npm:1.18.0" "@graphql-codegen/visitor-plugin-common": "npm:^2.12.1" change-case-all: "npm:1.0.15" + jest-each: "npm:^28.1.3" tslib: "npm:~2.6.0" unixify: "npm:^1.0.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql-tag: 2.12.6 languageName: unknown linkType: soft @@ -2956,6 +2958,8 @@ __metadata: "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" "@graphql-tools/utils": "npm:^10.0.0" "@types/parse-filepath": "npm:1.0.2" + graphql-request: "npm:^6.0.0" + graphql-tag: "npm:^2.12.6" parse-filepath: "npm:^1.0.2" tslib: "npm:~2.6.0" peerDependencies: @@ -3040,6 +3044,19 @@ __metadata: languageName: node linkType: hard +"@graphql-codegen/schema-ast@npm:^2.6.1": + version: 2.6.1 + resolution: "@graphql-codegen/schema-ast@npm:2.6.1" + dependencies: + "@graphql-codegen/plugin-helpers": "npm:^3.1.2" + "@graphql-tools/utils": "npm:^9.0.0" + tslib: "npm:~2.4.0" + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/c80d2848c1fc9e362749dc84ea27c2b6ad234448d7fc623bfb4b48b3f09a9d00819c86982e8c791cd0d048753ba69f834ee55c61413e17c3f2323f1506314a33 + languageName: node + linkType: hard + "@graphql-codegen/schema-ast@npm:^3.0.0": version: 3.0.0 resolution: "@graphql-codegen/schema-ast@npm:3.0.0" @@ -3103,6 +3120,9 @@ __metadata: resolution: "@graphql-codegen/typescript-apollo-angular@workspace:packages/plugins/typescript/apollo-angular" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" @@ -3146,6 +3166,9 @@ __metadata: resolution: "@graphql-codegen/typescript-generic-sdk@workspace:packages/plugins/typescript/generic-sdk" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:^2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" tslib: "npm:~2.6.0" @@ -3163,12 +3186,14 @@ __metadata: "@graphql-codegen/core": "npm:2.6.3" "@graphql-codegen/plugin-helpers": "npm:^3.0.0" "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:^2.12.1" "@graphql-tools/schema": "npm:10.0.4" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" cross-fetch: "npm:3.1.8" + fs-extra: "npm:^11.2.0" react: "npm:18.3.1" tslib: "npm:~2.6.0" peerDependencies: @@ -3182,6 +3207,7 @@ __metadata: resolution: "@graphql-codegen/typescript-graphql-files-modules@workspace:packages/plugins/typescript/graphql-files-modules" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3192,11 +3218,15 @@ __metadata: version: 0.0.0-use.local resolution: "@graphql-codegen/typescript-graphql-request@workspace:packages/plugins/typescript/graphql-request" dependencies: + "@graphql-codegen/core": "npm:2.6.3" "@graphql-codegen/plugin-helpers": "npm:^3.0.0" "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" "@graphql-tools/schema": "npm:10.0.4" auto-bind: "npm:~4.0.0" + fs-extra: "npm:^11.2.0" graphql-request: "npm:6.0.0" tslib: "npm:~2.6.0" peerDependencies: @@ -3211,6 +3241,9 @@ __metadata: resolution: "@graphql-codegen/typescript-jit-sdk@workspace:packages/plugins/typescript/jit-sdk" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" "@graphql-tools/utils": "npm:10.2.2" auto-bind: "npm:~4.0.0" @@ -3318,6 +3351,21 @@ __metadata: languageName: node linkType: hard +"@graphql-codegen/typescript-operations@npm:^2.5.6": + version: 2.5.13 + resolution: "@graphql-codegen/typescript-operations@npm:2.5.13" + dependencies: + "@graphql-codegen/plugin-helpers": "npm:^3.1.2" + "@graphql-codegen/typescript": "npm:^2.8.8" + "@graphql-codegen/visitor-plugin-common": "npm:2.13.8" + auto-bind: "npm:~4.0.0" + tslib: "npm:~2.4.0" + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/b747391f6373a8a63f6be099af5d69f9b42e7642099dbb66599f18883d84c2239cce1838584e077cd3308fe51e4be262f4a6dcd853068cf89cf87e4c364317bb + languageName: node + linkType: hard + "@graphql-codegen/typescript-operations@npm:^4.2.1": version: 4.2.1 resolution: "@graphql-codegen/typescript-operations@npm:4.2.1" @@ -3339,9 +3387,12 @@ __metadata: dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" + jest-docblock: "npm:28.1.1" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3368,6 +3419,9 @@ __metadata: resolution: "@graphql-codegen/typescript-react-query@workspace:packages/plugins/typescript/react-query" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" @@ -3405,6 +3459,9 @@ __metadata: resolution: "@graphql-codegen/typescript-solid-query@workspace:packages/plugins/typescript/solid-query" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" @@ -3468,6 +3525,9 @@ __metadata: resolution: "@graphql-codegen/typescript-urql@workspace:packages/plugins/typescript/urql" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" tslib: "npm:~2.6.0" @@ -3482,9 +3542,13 @@ __metadata: resolution: "@graphql-codegen/typescript-vue-apollo-smart-ops@workspace:packages/plugins/typescript/vue-apollo-smart-ops" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" + jest-docblock: "npm:28.1.1" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3497,9 +3561,13 @@ __metadata: resolution: "@graphql-codegen/typescript-vue-apollo@workspace:packages/plugins/typescript/vue-apollo" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" + jest-docblock: "npm:28.1.1" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -3512,6 +3580,9 @@ __metadata: resolution: "@graphql-codegen/typescript-vue-urql@workspace:packages/plugins/typescript/vue-urql" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" + "@graphql-codegen/testing": "npm:1.18.0" + "@graphql-codegen/typescript": "npm:^2.8.1" + "@graphql-codegen/typescript-operations": "npm:2.5.6" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" @@ -3537,6 +3608,21 @@ __metadata: languageName: node linkType: hard +"@graphql-codegen/typescript@npm:^2.8.8": + version: 2.8.8 + resolution: "@graphql-codegen/typescript@npm:2.8.8" + dependencies: + "@graphql-codegen/plugin-helpers": "npm:^3.1.2" + "@graphql-codegen/schema-ast": "npm:^2.6.1" + "@graphql-codegen/visitor-plugin-common": "npm:2.13.8" + auto-bind: "npm:~4.0.0" + tslib: "npm:~2.4.0" + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/193919e97a0b1e5f2ace2c1154d90b587f91164020d456a8f55b89dbd8c35f3b5679aa8333f3e45058fc5fcc53a99db3f8c8ed02f5ed0115bfc4ddc8c1dc3246 + languageName: node + linkType: hard + "@graphql-codegen/typescript@npm:^3.0.0": version: 3.0.0 resolution: "@graphql-codegen/typescript@npm:3.0.0" @@ -3635,6 +3721,26 @@ __metadata: languageName: node linkType: hard +"@graphql-codegen/visitor-plugin-common@npm:2.13.8": + version: 2.13.8 + resolution: "@graphql-codegen/visitor-plugin-common@npm:2.13.8" + dependencies: + "@graphql-codegen/plugin-helpers": "npm:^3.1.2" + "@graphql-tools/optimize": "npm:^1.3.0" + "@graphql-tools/relay-operation-optimizer": "npm:^6.5.0" + "@graphql-tools/utils": "npm:^9.0.0" + auto-bind: "npm:~4.0.0" + change-case-all: "npm:1.0.15" + dependency-graph: "npm:^0.11.0" + graphql-tag: "npm:^2.11.0" + parse-filepath: "npm:^1.0.2" + tslib: "npm:~2.4.0" + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/daed6e5260170991cef7c9eae3d94a7d432d273aae7d721f51051fa3e1e478d0e3515b4e444ad9d8bf605d5c1551713f09d3c59fa598249388abd7b9f05f7f66 + languageName: node + linkType: hard + "@graphql-codegen/visitor-plugin-common@npm:3.0.0": version: 3.0.0 resolution: "@graphql-codegen/visitor-plugin-common@npm:3.0.0" @@ -7934,6 +8040,17 @@ __metadata: languageName: node linkType: hard +"fs-extra@npm:^11.2.0": + version: 11.2.0 + resolution: "fs-extra@npm:11.2.0" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 10c0/d77a9a9efe60532d2e790e938c81a02c1b24904ef7a3efb3990b835514465ba720e99a6ea56fd5e2db53b4695319b644d76d5a0e9988a2beef80aa7b1da63398 + languageName: node + linkType: hard + "fs-extra@npm:^7.0.1": version: 7.0.1 resolution: "fs-extra@npm:7.0.1"