From a7b41ddce8374c0f050d3d7881c756550528bde5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Sep 2021 17:47:41 -0400 Subject: [PATCH] Version Packages (#78) Co-authored-by: github-actions[bot] --- .changeset/moody-hotels-sniff.md | 8 -- .changeset/stupid-poems-return.md | 5 -- examples/ez-react-next/package.json | 8 +- examples/github/package.json | 4 +- examples/mercurius/package.json | 4 +- examples/react/package.json | 10 +-- examples/vite-example/package.json | 6 +- packages/cli/CHANGELOG.md | 8 ++ packages/cli/package.json | 4 +- packages/gqty/CHANGELOG.md | 6 ++ packages/gqty/package.json | 2 +- packages/logger/CHANGELOG.md | 8 ++ packages/logger/package.json | 6 +- packages/react/CHANGELOG.md | 8 ++ packages/react/package.json | 6 +- packages/subscriptions/CHANGELOG.md | 8 ++ packages/subscriptions/package.json | 6 +- pnpm-lock.yaml | 112 ++++++++++++++-------------- 18 files changed, 122 insertions(+), 97 deletions(-) delete mode 100644 .changeset/moody-hotels-sniff.md delete mode 100644 .changeset/stupid-poems-return.md diff --git a/.changeset/moody-hotels-sniff.md b/.changeset/moody-hotels-sniff.md deleted file mode 100644 index f65f8dbe4..000000000 --- a/.changeset/moody-hotels-sniff.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'gqty': patch -'@gqty/logger': patch -'@gqty/react': patch -'@gqty/subscriptions': patch ---- - -add "sideEffects: false" for improved tree-shaking diff --git a/.changeset/stupid-poems-return.md b/.changeset/stupid-poems-return.md deleted file mode 100644 index a3afff998..000000000 --- a/.changeset/stupid-poems-return.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@gqty/cli': patch ---- - -Fix/Improve config loading diff --git a/examples/ez-react-next/package.json b/examples/ez-react-next/package.json index db787068d..3e27721f1 100644 --- a/examples/ez-react-next/package.json +++ b/examples/ez-react-next/package.json @@ -7,13 +7,13 @@ "start": "next start" }, "dependencies": { - "@gqty/logger": "workspace:^1.0.3", - "@gqty/react": "workspace:^1.1.0", + "@gqty/logger": "workspace:^1.0.4", + "@gqty/react": "workspace:^1.1.1", "@graphql-ez/nextjs": "^0.9.4", "@graphql-ez/plugin-codegen": "^0.7.2", "@graphql-ez/plugin-graphiql": "^0.9.1", "@graphql-ez/plugin-schema": "^0.7.2", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "graphql-ez": "^0.12.7", "next": "^11.1.2", @@ -21,7 +21,7 @@ "react-dom": "^17.0.2" }, "devDependencies": { - "@gqty/cli": "workspace:^1.1.3", + "@gqty/cli": "workspace:^1.1.4", "@types/node": "^16.7.10", "@types/react": "^17.0.19", "@types/react-dom": "^17.0.9", diff --git a/examples/github/package.json b/examples/github/package.json index 75369b524..c9b6e46f7 100644 --- a/examples/github/package.json +++ b/examples/github/package.json @@ -10,9 +10,9 @@ "test:manual": "jest -u" }, "dependencies": { - "@gqty/cli": "workspace:^1.1.3", + "@gqty/cli": "workspace:^1.1.4", "dotenv": "^10.0.0", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "test-utils": "workspace:^0.1.0" }, "devDependencies": { diff --git a/examples/mercurius/package.json b/examples/mercurius/package.json index 4fa45436e..9acbb8766 100644 --- a/examples/mercurius/package.json +++ b/examples/mercurius/package.json @@ -33,10 +33,10 @@ "test:watch": "bob-esbuild watch" }, "dependencies": { - "@gqty/cli": "workspace:^1.1.3", + "@gqty/cli": "workspace:^1.1.4", "@graphql-typed-document-node/core": "^3.1.0", "fastify": "^3.20.2", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "lodash": "^4.17.21", "mercurius": "^8.1.3", diff --git a/examples/react/package.json b/examples/react/package.json index 022edd9e3..18136182e 100644 --- a/examples/react/package.json +++ b/examples/react/package.json @@ -13,10 +13,10 @@ "@chakra-ui/react": "^1.6.7", "@emotion/react": "^11.4.1", "@emotion/styled": "^11.3.0", - "@gqty/cli": "workspace:^1.1.3", - "@gqty/logger": "workspace:^1.0.3", - "@gqty/react": "workspace:^1.1.0", - "@gqty/subscriptions": "workspace:^1.0.1", + "@gqty/cli": "workspace:^1.1.4", + "@gqty/logger": "workspace:^1.0.4", + "@gqty/react": "workspace:^1.1.1", + "@gqty/subscriptions": "workspace:^1.0.2", "@react-native-async-storage/async-storage": "^1.15.7", "@types/extract-files": "^8.1.1", "altair-fastify-plugin": "^4.0.9", @@ -26,7 +26,7 @@ "fastify": "^3.20.2", "fastify-nextjs": "^6.0.0", "framer-motion": "^4.1.17", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "graphql-upload": "^12.0.0", "localforage": "^1.10.0", diff --git a/examples/vite-example/package.json b/examples/vite-example/package.json index 3dbd492fb..318f78fae 100644 --- a/examples/vite-example/package.json +++ b/examples/vite-example/package.json @@ -9,9 +9,9 @@ "serve": "vite preview" }, "dependencies": { - "@gqty/cli": "workspace:^1.1.3", - "@gqty/react": "workspace:^1.1.0", - "gqty": "workspace:^1.1.1", + "@gqty/cli": "workspace:^1.1.4", + "@gqty/react": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "react": "^17.0.2", "react-dom": "^17.0.2" }, diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9d37e57c2..876298468 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @gqty/cli +## 1.1.4 + +### Patch Changes + +- 5446d83: Fix/Improve config loading +- Updated dependencies [1fc2672] + - gqty@1.1.2 + ## 1.1.3 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d53cfb555..ba55c9598 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@gqty/cli", - "version": "1.1.3", + "version": "1.1.4", "homepage": "https://gqty.dev", "repository": { "type": "git", @@ -49,7 +49,7 @@ "commander": "^8.1.0", "cosmiconfig": "^7.0.1", "cross-fetch": "^3.1.4", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "mkdirp": "^1.0.4", "prettier": "^2.3.2" }, diff --git a/packages/gqty/CHANGELOG.md b/packages/gqty/CHANGELOG.md index dc8751a3e..7f360f16c 100644 --- a/packages/gqty/CHANGELOG.md +++ b/packages/gqty/CHANGELOG.md @@ -1,5 +1,11 @@ # gqty +## 1.1.2 + +### Patch Changes + +- 1fc2672: add "sideEffects: false" for improved tree-shaking + ## 1.1.1 ### Patch Changes diff --git a/packages/gqty/package.json b/packages/gqty/package.json index 85160d68b..080de74fb 100644 --- a/packages/gqty/package.json +++ b/packages/gqty/package.json @@ -1,6 +1,6 @@ { "name": "gqty", - "version": "1.1.1", + "version": "1.1.2", "description": "gqty client without queries", "homepage": "https://gqty.dev", "repository": { diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 8fac7f809..22890d7cf 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -1,5 +1,13 @@ # @gqty/logger +## 1.0.4 + +### Patch Changes + +- 1fc2672: add "sideEffects: false" for improved tree-shaking +- Updated dependencies [1fc2672] + - gqty@1.1.2 + ## 1.0.3 ### Patch Changes diff --git a/packages/logger/package.json b/packages/logger/package.json index 71981b5ed..8749e2fa8 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@gqty/logger", - "version": "1.0.3", + "version": "1.0.4", "homepage": "https://gqty.dev", "repository": { "type": "git", @@ -45,7 +45,7 @@ "@size-limit/preset-small-lib": "^5.0.3", "@types/prettier": "^2.3.2", "bob-esbuild-cli": "^1.0.1", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "jest": "^27.1.0", "rimraf": "^3.0.2", "size-limit": "^5.0.3", @@ -54,7 +54,7 @@ "typescript": "^4.4.2" }, "peerDependencies": { - "gqty": "workspace:^1.1.1" + "gqty": "workspace:^1.1.2" }, "engines": { "node": ">=12" diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index d43f90765..0ef1e764c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @gqty/react +## 1.1.1 + +### Patch Changes + +- 1fc2672: add "sideEffects: false" for improved tree-shaking +- Updated dependencies [1fc2672] + - gqty@1.1.2 + ## 1.1.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index 61084ba08..cc3a37deb 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@gqty/react", - "version": "1.1.0", + "version": "1.1.1", "homepage": "https://gqty.dev", "repository": { "type": "git", @@ -52,7 +52,7 @@ "@types/react-dom": "^17.0.9", "bob-esbuild-cli": "^1.0.1", "get-port": "^5.1.1", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "jest": "^27.1.0", "react": "^17.0.2", @@ -66,7 +66,7 @@ "typescript": "^4.4.2" }, "peerDependencies": { - "gqty": "workspace:^1.0.3", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "react": ">=16.8" }, diff --git a/packages/subscriptions/CHANGELOG.md b/packages/subscriptions/CHANGELOG.md index 9d2b1c5c3..3e8960245 100644 --- a/packages/subscriptions/CHANGELOG.md +++ b/packages/subscriptions/CHANGELOG.md @@ -1,5 +1,13 @@ # @gqty/subscriptions +## 1.0.2 + +### Patch Changes + +- 1fc2672: add "sideEffects: false" for improved tree-shaking +- Updated dependencies [1fc2672] + - gqty@1.1.2 + ## 1.0.1 ### Patch Changes diff --git a/packages/subscriptions/package.json b/packages/subscriptions/package.json index 47b1f53a4..5905d9dfe 100644 --- a/packages/subscriptions/package.json +++ b/packages/subscriptions/package.json @@ -1,6 +1,6 @@ { "name": "@gqty/subscriptions", - "version": "1.0.1", + "version": "1.0.2", "homepage": "https://gqty.dev", "repository": { "type": "git", @@ -40,14 +40,14 @@ "devDependencies": { "@types/ws": "^7.4.7", "bob-esbuild-cli": "^1.0.1", - "gqty": "workspace:^1.1.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2", "test-utils": "workspace:^0.1.0", "tslib": "^2.3.1", "typescript": "^4.4.2" }, "peerDependencies": { - "gqty": "workspace:^1.0.1", + "gqty": "workspace:^1.1.2", "graphql": "^15.5.2" }, "peerDependenciesMeta": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0107fc3d3..914d5fd50 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,27 +19,27 @@ importers: '@babel/plugin-proposal-nullish-coalescing-operator': ^7.14.5 '@babel/plugin-proposal-optional-chaining': ^7.14.5 '@changesets/cli': ^2.17.0 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' bob-esbuild: ^1.2.3 bob-esbuild-cli: ^1.0.1 bufferutil: ^4.0.3 chalk: ^4.1.2 changesets-github-release: ^0.0.4 concurrently: ^6.2.1 - esbuild: ^0.12.25 + esbuild: '>=0.12.25' fkill: ^7.2.1 globby: ^12.0.2 husky: ^7.0.2 - jest: ^27.1.0 + jest: '>=27.1.0' open: ^8.2.1 - prettier: ^2.3.2 + prettier: '>=2.3.2' pretty-quick: ^3.1.1 rimraf: ^3.0.2 - ts-jest: ^27.0.5 + ts-jest: '>=27.0.5' ts-node: ^10.2.1 tslib: ^2.3.1 tsup: ^4.14.0 - typescript: ^4.4.2 + typescript: '>=4.4.2' utf-8-validate: ^5.0.5 wait-on: ^6.0.0 dependencies: @@ -73,25 +73,25 @@ importers: examples/ez-react-next: specifiers: - '@gqty/cli': workspace:^1.1.3 - '@gqty/logger': workspace:^1.0.3 - '@gqty/react': workspace:^1.1.0 + '@gqty/cli': workspace:^1.1.4 + '@gqty/logger': workspace:^1.0.4 + '@gqty/react': workspace:^1.1.1 '@graphql-ez/nextjs': ^0.9.4 '@graphql-ez/plugin-codegen': ^0.7.2 '@graphql-ez/plugin-graphiql': ^0.9.1 '@graphql-ez/plugin-schema': ^0.7.2 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 concurrently: ^6.2.1 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 graphql-ez: ^0.12.7 next: ^11.1.2 open-cli: ^7.0.1 react: ^17.0.2 react-dom: ^17.0.2 - typescript: ^4.4.2 + typescript: '>=4.4.2' wait-on: ^6.0.0 dependencies: '@gqty/logger': link:../../packages/logger @@ -118,11 +118,11 @@ importers: examples/github: specifiers: - '@gqty/cli': workspace:^1.1.3 + '@gqty/cli': workspace:^1.1.4 dotenv: ^10.0.0 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 isomorphic-unfetch: ^3.1.0 - jest: ^27.1.0 + jest: '>=27.1.0' test-utils: workspace:^0.1.0 dependencies: '@gqty/cli': link:../../packages/cli @@ -135,16 +135,16 @@ importers: examples/mercurius: specifiers: - '@gqty/cli': workspace:^1.1.3 + '@gqty/cli': workspace:^1.1.4 '@graphql-typed-document-node/core': ^3.1.0 '@size-limit/preset-small-lib': ^5.0.3 '@types/lodash': ^4.14.172 '@types/randomstring': ^1.1.7 bob-esbuild-cli: ^1.0.1 fastify: ^3.20.2 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 - jest: ^27.1.0 + jest: '>=27.1.0' lodash: ^4.17.21 mercurius: ^8.1.3 mercurius-codegen: ^2.0.0 @@ -154,7 +154,7 @@ importers: test-utils: workspace:^0.1.0 ts-node: ^10.2.1 tslib: ^2.3.1 - typescript: ^4.4.2 + typescript: '>=4.4.2' dependencies: '@gqty/cli': link:../../packages/cli '@graphql-typed-document-node/core': 3.1.0_graphql@15.5.2 @@ -183,16 +183,16 @@ importers: '@chakra-ui/react': ^1.6.7 '@emotion/react': ^11.4.1 '@emotion/styled': ^11.3.0 - '@gqty/cli': workspace:^1.1.3 - '@gqty/logger': workspace:^1.0.3 - '@gqty/react': workspace:^1.1.0 - '@gqty/subscriptions': workspace:^1.0.1 + '@gqty/cli': workspace:^1.1.4 + '@gqty/logger': workspace:^1.0.4 + '@gqty/react': workspace:^1.1.1 + '@gqty/subscriptions': workspace:^1.0.2 '@react-native-async-storage/async-storage': ^1.15.7 '@types/extract-files': ^8.1.1 '@types/faker': ^5.5.8 '@types/lodash': ^4.14.172 '@types/ms': ^0.7.31 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 altair-fastify-plugin: ^4.0.9 @@ -203,10 +203,10 @@ importers: fastify: ^3.20.2 fastify-nextjs: ^6.0.0 framer-motion: ^4.1.17 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 graphql-upload: ^12.0.0 - jest: ^27.1.0 + jest: '>=27.1.0' localforage: ^1.10.0 lodash: ^4.17.21 mercurius: ^8.1.3 @@ -225,7 +225,7 @@ importers: react-use: ^17.3.1 serialize-error: ^8.1.0 tsup: ^4.14.0 - typescript: ^4.4.2 + typescript: '>=4.4.2' use-error-boundary: ^2.0.6 wait-on: ^6.0.0 dependencies: @@ -281,15 +281,15 @@ importers: examples/vite-example: specifiers: - '@gqty/cli': workspace:^1.1.3 - '@gqty/react': workspace:^1.1.0 + '@gqty/cli': workspace:^1.1.4 + '@gqty/react': workspace:^1.1.1 '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 '@vitejs/plugin-react-refresh': ^1.3.6 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 react: ^17.0.2 react-dom: ^17.0.2 - typescript: ^4.4.2 + typescript: '>=4.4.2' vite: ^2.5.3 dependencies: '@gqty/cli': link:../../packages/cli @@ -315,23 +315,23 @@ importers: concurrently: ^6.2.1 cross-env: ^7.0.3 es-jest: ^1.3.0 - esbuild: ^0.12.25 + esbuild: '>=0.12.25' fastify: ^3.20.2 get-port: ^5.1.1 graphql: ^15.5.2 - jest: ^27.1.0 + jest: '>=27.1.0' jest-watch-typeahead: ^0.6.4 mercurius: ^8.1.3 mercurius-codegen: ^2.0.0 mercurius-integration-testing: ^3.2.0 - prettier: ^2.3.2 + prettier: '>=2.3.2' randomstring: ^1.2.1 rimraf: ^3.0.2 size-limit: ^5.0.3 - ts-jest: ^27.0.5 + ts-jest: '>=27.0.5' tslib: ^2.3.1 tsup: ^4.14.0 - typescript: ^4.4.2 + typescript: '>=4.4.2' wait-for-expect: ^3.0.2 dependencies: '@rollup/plugin-babel': 5.3.0 @@ -378,13 +378,13 @@ importers: '@theguild/components': ^1.4.8 '@types/concurrently': ^6.2.1 '@types/mdx-js__react': ^1.5.4 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 concurrently: ^6.2.1 cross-env: ^7.0.3 csstype: ^3.0.8 - esbuild: ^0.12.25 + esbuild: '>=0.12.25' esbuild-register: ^3.0.0 framer-motion: ^4.1.17 next: ^11.1.2 @@ -398,7 +398,7 @@ importers: react-use: ^17.3.1 remark-admonitions: ^1.2.1 shiki: ^0.9.10 - typescript: ^4.4.2 + typescript: '>=4.4.2' wait-on: ^6.0.0 dependencies: '@chakra-ui/icons': 1.0.15_react@17.0.2 @@ -452,18 +452,18 @@ importers: commander: ^8.1.0 cosmiconfig: ^7.0.1 cross-fetch: ^3.1.4 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 mkdirp: ^1.0.4 open-cli: ^7.0.1 - prettier: ^2.3.2 + prettier: '>=2.3.2' rimraf: ^3.0.2 serve: ^12.0.0 size-limit: ^5.0.3 test-utils: workspace:^0.1.0 tmp-promise: ^3.0.2 tslib: ^2.3.1 - typescript: ^4.4.2 + typescript: '>=4.4.2' wait-on: ^6.0.0 dependencies: '@graphql-codegen/core': 2.1.0_graphql@15.5.2 @@ -501,7 +501,7 @@ importers: '@types/lodash': ^4.14.172 '@types/lodash-es': ^4.17.4 '@types/mkdirp': ^1.0.2 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' '@types/react': ^17.0.19 '@types/react-dom': ^17.0.9 '@types/rimraf': ^3.0.2 @@ -513,7 +513,7 @@ importers: cross-env: ^7.0.3 get-port: ^5.1.1 graphql: ^15.5.2 - jest: ^27.1.0 + jest: '>=27.1.0' lodash: ^4.17.21 lodash-es: ^4.17.21 mercurius: ^8.1.3 @@ -528,7 +528,7 @@ importers: tsc-watch: ^4.5.0 tslib: ^2.3.1 tsup: ^4.14.0 - typescript: ^4.4.2 + typescript: '>=4.4.2' wait-on: ^6.0.0 ws: ^8.2.1 dependencies: @@ -575,15 +575,15 @@ importers: '@size-limit/preset-small-lib': ^5.0.3 '@types/prettier': ^2.3.2 bob-esbuild-cli: ^1.0.1 - gqty: workspace:^1.1.1 - jest: ^27.1.0 - prettier: ^2.3.2 + gqty: workspace:^1.1.2 + jest: '>=27.1.0' + prettier: '>=2.3.2' rimraf: ^3.0.2 serialize-error: ^8.1.0 size-limit: ^5.0.3 test-utils: workspace:^0.1.0 tslib: ^2.3.1 - typescript: ^4.4.2 + typescript: '>=4.4.2' dependencies: prettier: 2.3.2 serialize-error: 8.1.0 @@ -611,9 +611,9 @@ importers: '@types/react-dom': ^17.0.9 bob-esbuild-cli: ^1.0.1 get-port: ^5.1.1 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 - jest: ^27.1.0 + jest: '>=27.1.0' react: ^17.0.2 react-dom: ^17.0.2 react-ssr-prepass: ^1.4.0 @@ -623,7 +623,7 @@ importers: size-limit: ^5.0.3 test-utils: workspace:^0.1.0 tslib: ^2.3.1 - typescript: ^4.4.2 + typescript: '>=4.4.2' dependencies: react-ssr-prepass: 1.4.0_react@17.0.2 devDependencies: @@ -654,12 +654,12 @@ importers: specifiers: '@types/ws': ^7.4.7 bob-esbuild-cli: ^1.0.1 - gqty: workspace:^1.1.1 + gqty: workspace:^1.1.2 graphql: ^15.5.2 isomorphic-ws: ^4.0.1 test-utils: workspace:^0.1.0 tslib: ^2.3.1 - typescript: ^4.4.2 + typescript: '>=4.4.2' ws: ^8.2.1 dependencies: isomorphic-ws: 4.0.1_ws@8.2.1 @@ -688,7 +688,7 @@ importers: '@types/lodash': ^4.14.172 '@types/lodash-es': ^4.17.4 '@types/ms': ^0.7.31 - '@types/node': ^16.7.10 + '@types/node': '>=16.7.4' '@types/node-schedule': ^1.3.2 date-fns: ^2.23.0 dotenv: ^10.0.0 @@ -707,7 +707,7 @@ importers: p-lazy: ^4.0.0 prisma: ^2.30.3 tsup: ^4.14.0 - typescript: ^4.4.2 + typescript: '>=4.4.2' dependencies: '@graphql-ez/fastify': 0.9.3_938cad229d74bba4dae15e7a9a339ab4 '@graphql-ez/plugin-altair': 0.7.1_37ae0dc5a472d46afbbf0110e56b5e93