From cb05739d00c59324ab0789990c0f68e456fe560a Mon Sep 17 00:00:00 2001 From: YassinEldeeb Date: Thu, 26 Oct 2023 10:02:22 +0300 Subject: [PATCH] pin nextjs version --- .../react/apollo-client-swc-plugin/codegen.ts | 1 + examples/react/nextjs-swr/codegen.ts | 1 + examples/react/nextjs-swr/package.json | 2 +- .../react/tanstack-react-query/codegen.ts | 1 + .../typescript-graphql-request/codegen.ts | 1 + examples/typescript-resolvers/codegen.ts | 1 + packages/presets/client/CHANGELOG.md | 6 +- .../advanced/generated-files-colocation.mdx | 2 + .../pages/docs/advanced/how-does-it-work.mdx | 1 + .../docs/config-reference/schema-field.mdx | 28 +++++ yarn.lock | 104 ++++++++++++++++-- 11 files changed, 137 insertions(+), 11 deletions(-) diff --git a/examples/react/apollo-client-swc-plugin/codegen.ts b/examples/react/apollo-client-swc-plugin/codegen.ts index 6d94d628656..d2388e3b1c1 100644 --- a/examples/react/apollo-client-swc-plugin/codegen.ts +++ b/examples/react/apollo-client-swc-plugin/codegen.ts @@ -1,4 +1,5 @@ /* eslint-disable import/no-extraneous-dependencies */ +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/examples/react/nextjs-swr/codegen.ts b/examples/react/nextjs-swr/codegen.ts index 0d77bb118c1..6611d1ad475 100644 --- a/examples/react/nextjs-swr/codegen.ts +++ b/examples/react/nextjs-swr/codegen.ts @@ -1,4 +1,5 @@ // eslint-disable-next-line import/no-extraneous-dependencies +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/examples/react/nextjs-swr/package.json b/examples/react/nextjs-swr/package.json index ce8422de906..35f5b01122e 100644 --- a/examples/react/nextjs-swr/package.json +++ b/examples/react/nextjs-swr/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@graphql-tools/executor-http": "^1.0.0", - "next": "^13.3.0", + "next": "13.3.1", "react": "^18.2.0", "react-dom": "^18.2.0", "swr": "^2.0.0" diff --git a/examples/react/tanstack-react-query/codegen.ts b/examples/react/tanstack-react-query/codegen.ts index 1a100a3ccf1..bee0c4c9355 100644 --- a/examples/react/tanstack-react-query/codegen.ts +++ b/examples/react/tanstack-react-query/codegen.ts @@ -1,4 +1,5 @@ /* eslint-disable import/no-extraneous-dependencies */ +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/examples/typescript-graphql-request/codegen.ts b/examples/typescript-graphql-request/codegen.ts index 8152d8f114c..edd12fb59fd 100644 --- a/examples/typescript-graphql-request/codegen.ts +++ b/examples/typescript-graphql-request/codegen.ts @@ -1,4 +1,5 @@ /* eslint-disable import/no-extraneous-dependencies */ +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/examples/typescript-resolvers/codegen.ts b/examples/typescript-resolvers/codegen.ts index 6e04a287c8d..e78ae9a2c4e 100644 --- a/examples/typescript-resolvers/codegen.ts +++ b/examples/typescript-resolvers/codegen.ts @@ -1,4 +1,5 @@ /* eslint-disable import/no-extraneous-dependencies */ +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/packages/presets/client/CHANGELOG.md b/packages/presets/client/CHANGELOG.md index 04a76512db3..8e3b2c98b4f 100644 --- a/packages/presets/client/CHANGELOG.md +++ b/packages/presets/client/CHANGELOG.md @@ -346,7 +346,8 @@ ```ts /** codegen.ts */ - import { CodegenConfig } from '@graphql-codegen/cli'; + // @ts-ignore +import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index', @@ -394,7 +395,8 @@ ```ts /** codegen.ts */ - import { CodegenConfig } from '@graphql-codegen/cli'; + // @ts-ignore +import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index', diff --git a/website/src/pages/docs/advanced/generated-files-colocation.mdx b/website/src/pages/docs/advanced/generated-files-colocation.mdx index fbe6053bf52..96a54fe439f 100644 --- a/website/src/pages/docs/advanced/generated-files-colocation.mdx +++ b/website/src/pages/docs/advanced/generated-files-colocation.mdx @@ -17,6 +17,7 @@ For similar results on a back-end project, please refer to [`@graphql-codegen/gr Most GraphQL Code Generator configuration examples (in guides or plugins documentation) generate types in a single common file, as follows: ```ts +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; // Configuration for a React URQL setup @@ -65,6 +66,7 @@ To use this preset, you need to add 2 outputs to your `codegen.ts` file: ```ts filename="codegen.ts" +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/website/src/pages/docs/advanced/how-does-it-work.mdx b/website/src/pages/docs/advanced/how-does-it-work.mdx index c723b219b39..fb191ecc1fd 100644 --- a/website/src/pages/docs/advanced/how-does-it-work.mdx +++ b/website/src/pages/docs/advanced/how-does-it-work.mdx @@ -92,6 +92,7 @@ fragment UserFields on User { And with the following `codegen.ts` configuration file: ```ts filename="codegen.ts" +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/website/src/pages/docs/config-reference/schema-field.mdx b/website/src/pages/docs/config-reference/schema-field.mdx index 67a918cf509..275a25392bc 100644 --- a/website/src/pages/docs/config-reference/schema-field.mdx +++ b/website/src/pages/docs/config-reference/schema-field.mdx @@ -17,6 +17,7 @@ The `schema` field should point to your `GraphQLSchema` - there are multiple way You can specify the `schema` field in your root level config, as follows: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -36,6 +37,7 @@ export default config; Or, you can specify it per-output file level. This way you can ```ts {6,10} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -59,6 +61,7 @@ export default config; You can also specify `schema` on both levels: root and output-file, and then GraphQL Code Generator will merge both schemas into one: ```ts {4,7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -87,6 +90,7 @@ The following can be specified as a single value or an array with mixed values. You can specify a URL to load your `GraphQLSchema` from: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -103,6 +107,7 @@ export default config; You can also specify custom HTTP headers to be sent with the request: ```ts {7-9} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -127,6 +132,7 @@ You can specify a custom fetch function for the HTTP request, using the module n ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -147,6 +153,7 @@ export default config; You can specify an HTTP method for the introspection query (the default value is `POST`). ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -167,6 +174,7 @@ export default config; Handling the response as SDL will allow you to load schema from remote server that doesn't return a JSON introspection. Example use case is when using schema registry like [GraphQL Hive](https://docs.graphql-hive.com/features/high-availability-cdn#graphql-schema-sdl). ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -188,6 +196,7 @@ You can point to a local `.json` file that contains [GraphQL Introspection](http ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -203,6 +212,7 @@ export default config; You can point to a single `.graphql` file that contains the AST string of your schema: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -217,6 +227,7 @@ Or, you can point to multiple files using a glob expression (codegen will merge ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -230,6 +241,7 @@ You can also specify multiple patterns: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -243,6 +255,7 @@ export default config; And, you can specify files to exclude/ignore, using the `!` sign: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -264,6 +277,7 @@ If you are using `graphql-import` syntax in your schema definitions, you can tel ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -285,6 +299,7 @@ When enabled, converts all deprecated forms of GraphQL comments (marked with `#` ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -307,6 +322,7 @@ Set to true to assume the SDL is valid, and skip any SDL syntax validations. ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -326,6 +342,7 @@ export default config; You can use code files, and the codegen will try to extract the GraphQL schema from it, based on `gql` tag: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -343,6 +360,7 @@ The codegen will try to load the file as an AST and look for exact GraphQL strin You can disable the `require` if it causes errors for you (for example, because of a different module system or missing dependency): ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -363,6 +381,7 @@ You can disable the AST lookup phase and tell codegen to skip and directly try t ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -382,6 +401,7 @@ export default config; Set this to `true` to tell codegen to skip AST validation. ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -403,6 +423,7 @@ You can also specify a code file that exports your `GraphQLSchema` object as exp ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -434,6 +455,7 @@ You can specify your schema directly as an AST string in your config file. It's ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -452,6 +474,7 @@ You can load your schema file from a remote GitHub file using one of the followi Provide the GitHub path to your schema and token using the following syntax: ```ts {4,5,6,7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -474,6 +497,7 @@ yarn graphql-codegen Alternatively, you can provide just the GitHub path to your schema: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -495,6 +519,7 @@ GITHUB_TOKEN= yarn graphql-codegen You can load your schema file from a Git repository using the following syntax: ```ts {4} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -510,6 +535,7 @@ export default config; You can load your schema from Apollo Engine with the following syntax: ```ts +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -534,6 +560,7 @@ export default config; If your schema has a different or complicated way of loading, you can point to a single code file that works for you. ```ts {7,12} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { @@ -609,6 +636,7 @@ export default async () => { Add custom loader to your codegen config: ```ts {7} +// @ts-ignore import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { diff --git a/yarn.lock b/yarn.lock index e5ebfce4f8f..1e127c402c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3490,6 +3490,11 @@ dependencies: webpack-bundle-analyzer "4.7.0" +"@next/env@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.3.1.tgz#589707043065f6b71d411ed9b8f1ffd057c0fd4a" + integrity sha512-EDtCoedIZC7JlUQ3uaQpSc4aVmyhbLHmQVALg7pFfQgOTjgSnn7mKtA0DiCMkYvvsx6aFb5octGMtWrOtGXW9A== + "@next/env@13.5.4", "@next/env@^13.4.3": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.4.tgz#777c3af16de2cf2f611b6c8126910062d13d222c" @@ -3502,46 +3507,91 @@ dependencies: glob "7.1.7" +"@next/swc-darwin-arm64@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.1.tgz#2c9719dd10a9cdf63bf50a7576b05dcf78999fe8" + integrity sha512-UXPtriEc/pBP8luSLSCZBcbzPeVv+SSjs9cH/KygTbhmACye8/OOXRZO13Z2Wq1G0gLmEAIHQAOuF+vafPd2lw== + "@next/swc-darwin-arm64@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.4.tgz#241957774fef3f876dc714cfc0ca6f00f561737e" integrity sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w== +"@next/swc-darwin-x64@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.1.tgz#0be90342c89e53a390ccd9bece15f7f5cd480049" + integrity sha512-lT36yYxosCfLtplFzJWgo0hrPu6/do8+msgM7oQkPeohDNdhjtjFUgOOwdSnPublLR6Mo2Ym4P/wl5OANuD2bw== + "@next/swc-darwin-x64@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.4.tgz#fa11bb97bf06cd45cbd554354b46bf93e22c025b" integrity sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw== +"@next/swc-linux-arm64-gnu@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.1.tgz#a7353265839f8b8569a346a444dc3ab3770d297e" + integrity sha512-wRb76nLWJhonH8s3kxC/1tFguEkeOPayIwe9mkaz1G/yeS3OrjeyKMJsb4+Kdg0zbTo53bNCOl59NNtDM7yyyw== + "@next/swc-linux-arm64-gnu@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.4.tgz#dd3a482cd6871ed23b049066a0f3c4c2f955dc88" integrity sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w== +"@next/swc-linux-arm64-musl@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.1.tgz#24552e6102c350e372f83f505a1d93c880551a50" + integrity sha512-qz3BzjJRZ16Iq/jrp+pjiYOc0jTjHlfmxQmZk9x/+5uhRP6/eWQSTAPVJ33BMo6oK5O5N4644OgTAbzXzorecg== + "@next/swc-linux-arm64-musl@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.4.tgz#ed6d7abaf5712cff2752ce5300d6bacc6aff1b18" integrity sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg== +"@next/swc-linux-x64-gnu@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.1.tgz#5f335a683b6eafa52307b12af97782993b6c45ff" + integrity sha512-6mgkLmwlyWlomQmpl21I3hxgqE5INoW4owTlcLpNsd1V4wP+J46BlI/5zV5KWWbzjfncIqzXoeGs5Eg+1GHODA== + "@next/swc-linux-x64-gnu@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.4.tgz#977a040388e8a685a3a85e0dbdff90a4ee2a7189" integrity sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg== +"@next/swc-linux-x64-musl@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.1.tgz#58e5aad6f97203a0788783f66324456c8f9cdb50" + integrity sha512-uqm5sielhQmKJM+qayIhgZv1KlS5pqTdQ99b+Z7hMWryXS96qE0DftTmMZowBcUL6x7s2vSXyH5wPtO1ON7LBg== + "@next/swc-linux-x64-musl@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.4.tgz#3e29a0ad8efc016196c3a120da04397eea328b2a" integrity sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg== +"@next/swc-win32-arm64-msvc@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.1.tgz#f8ed1badab57ed4503969758754e6fb0cf326753" + integrity sha512-WomIiTj/v3LevltlibNQKmvrOymNRYL+a0dp5R73IwPWN5FvXWwSELN/kiNALig/+T3luc4qHNTyvMCp9L6U5Q== + "@next/swc-win32-arm64-msvc@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.4.tgz#18a236c3fe5a48d24b56d939e6a05488bb682b7e" integrity sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w== +"@next/swc-win32-ia32-msvc@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.1.tgz#7f599c8975b09ee5527cc49b9e5a4d13be50635a" + integrity sha512-M+PoH+0+q658wRUbs285RIaSTYnGBSTdweH/0CdzDgA6Q4rBM0sQs4DHmO3BPP0ltCO/vViIoyG7ks66XmCA5g== + "@next/swc-win32-ia32-msvc@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.4.tgz#255132243ab6fb20d3c7c92a585e2c4fa50368fe" integrity sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw== +"@next/swc-win32-x64-msvc@13.3.1": + version "13.3.1" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.1.tgz#192d43ab44ebb98bd4f5865d0e1d7ce62703182f" + integrity sha512-Sl1F4Vp5Z1rNXWZYqJwMuWRRol4bqOB6+/d7KqkgQ4AcafKPN1PZmpkCoxv4UFHtFNIB7EotnuIhtXu3zScicQ== + "@next/swc-win32-x64-msvc@13.5.4": version "13.5.4" resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.4.tgz#cc542907b55247c5634d9a8298e1c143a1847e25" @@ -4006,6 +4056,13 @@ "@swc/core-win32-ia32-msvc" "1.3.55" "@swc/core-win32-x64-msvc" "1.3.55" +"@swc/helpers@0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.0.tgz#bf1d807b60f7290d0ec763feea7ccdeda06e85f1" + integrity sha512-SjY/p4MmECVVEWspzSRpQEM3sjR17sP8PbGxELWrT+YZMBfiUyt1MRUNjMV23zohwlG2HYtCQOsCwsTHguXkyg== + dependencies: + tslib "^2.4.0" + "@swc/helpers@0.5.2": version "0.5.2" resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d" @@ -4513,16 +4570,16 @@ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756" integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg== -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/unist@^3.0.0": +"@types/unist@*", "@types/unist@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a" integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w== +"@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== + "@types/ws@^8.0.0": version "8.5.4" resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5" @@ -11950,7 +12007,7 @@ mz@^2.7.0: object-assign "^4.0.1" thenify-all "^1.0.0" -nanoid@^3.3.6: +nanoid@^3.3.4, nanoid@^3.3.6: version "3.3.6" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== @@ -12002,7 +12059,29 @@ next-videos@1.5.0: dependencies: file-loader "^4.2.0" -next@^13.3.0, next@^13.5.4: +next@13.3.1: + version "13.3.1" + resolved "https://registry.yarnpkg.com/next/-/next-13.3.1.tgz#17625f7423db2e059d71b41bd9031756cf2b33bc" + integrity sha512-eByWRxPzKHs2oQz1yE41LX35umhz86ZSZ+mYyXBqn2IBi2hyUqxBA88avywdr4uyH+hCJczegGsDGWbzQA5Rqw== + dependencies: + "@next/env" "13.3.1" + "@swc/helpers" "0.5.0" + busboy "1.6.0" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.1" + optionalDependencies: + "@next/swc-darwin-arm64" "13.3.1" + "@next/swc-darwin-x64" "13.3.1" + "@next/swc-linux-arm64-gnu" "13.3.1" + "@next/swc-linux-arm64-musl" "13.3.1" + "@next/swc-linux-x64-gnu" "13.3.1" + "@next/swc-linux-x64-musl" "13.3.1" + "@next/swc-win32-arm64-msvc" "13.3.1" + "@next/swc-win32-ia32-msvc" "13.3.1" + "@next/swc-win32-x64-msvc" "13.3.1" + +next@^13.5.4: version "13.5.4" resolved "https://registry.yarnpkg.com/next/-/next-13.5.4.tgz#7e6a93c9c2b9a2c78bf6906a6c5cc73ae02d5b4d" integrity sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA== @@ -12963,6 +13042,15 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + postcss@8.4.31, postcss@^8.1.10, postcss@^8.4.23, postcss@^8.4.25, postcss@^8.4.27: version "8.4.31" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"