Skip to content

Commit 512190a

Browse files
fix(ci): pin nextjs version for nextjs-swc example (#9737)
* pin nextjs version * Revert ts-ignore * Remove nextjs-swr from ignored * Remove console.log which trips up Jest error * Apply new generated types * Fix fetcher usage --------- Co-authored-by: Eddy Nguyen <[email protected]> Co-authored-by: Eddy Nguyen <[email protected]>
1 parent bdaf518 commit 512190a

File tree

6 files changed

+109
-102
lines changed

6 files changed

+109
-102
lines changed

examples/programmatic-typescript/src/gql.generated.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> =
99
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1010
/** All built-in and custom scalars, mapped to their actual values */
1111
export type Scalars = {
12-
ID: string;
13-
String: string;
14-
Boolean: boolean;
15-
Int: number;
16-
Float: number;
12+
ID: { input: string; output: string };
13+
String: { input: string; output: string };
14+
Boolean: { input: boolean; output: boolean };
15+
Int: { input: number; output: number };
16+
Float: { input: number; output: number };
1717
};
1818

1919
export type Query = {
2020
__typename?: 'Query';
21-
hello: Scalars['String'];
21+
hello: Scalars['String']['output'];
2222
};
2323

2424
export type ResolverTypeWrapper<T> = Promise<T> | T;
@@ -94,15 +94,15 @@ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs
9494
/** Mapping between all available schema types and the resolvers types */
9595
export type ResolversTypes = {
9696
Query: ResolverTypeWrapper<{}>;
97-
String: ResolverTypeWrapper<Scalars['String']>;
98-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
97+
String: ResolverTypeWrapper<Scalars['String']['output']>;
98+
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
9999
};
100100

101101
/** Mapping between all available schema types and the resolvers parents */
102102
export type ResolversParentTypes = {
103103
Query: {};
104-
String: Scalars['String'];
105-
Boolean: Scalars['Boolean'];
104+
String: Scalars['String']['output'];
105+
Boolean: Scalars['Boolean']['output'];
106106
};
107107

108108
export type QueryResolvers<

examples/react/nextjs-swr/hooks/use-query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function useGraphQL<TResult, TVariables>(
2020
document.definitions.find(isOperationDefinition)?.name,
2121
variables,
2222
] as const,
23-
async (_key: string, variables: any) =>
23+
async ([_key, variables]: any) =>
2424
executor({
2525
document,
2626
variables,

examples/react/nextjs-swr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@graphql-tools/executor-http": "^1.0.0",
16-
"next": "^13.3.0",
16+
"next": "13.3.1",
1717
"react": "^18.2.0",
1818
"react-dom": "^18.2.0",
1919
"swr": "^2.0.0"

examples/typescript-graphql-request/src/main.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,3 @@ export const getPeople = async (first?: number) => {
4646
}
4747
return res?.allPeople?.edges;
4848
};
49-
50-
getPeople().then(res => console.log(res));
51-
getPeople(10).then(res => console.log(res));

scripts/print-example-ci-command.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const fg = require('fast-glob');
44

55
const packageJSON = fg.sync(['examples/**/package.json'], { ignore: ['**/node_modules/**'] });
66

7-
const ignoredPackages = ['example-react-nextjs-swr'];
7+
const ignoredPackages = [];
88

99
const result = packageJSON.reduce(
1010
(res, packageJSONPath) => {

yarn.lock

Lines changed: 96 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -3475,107 +3475,112 @@
34753475
dependencies:
34763476
webpack-bundle-analyzer "4.7.0"
34773477

3478-
"@next/env@13.5.6", "@next/env@^13.4.3":
3479-
version "13.5.6"
3480-
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.6.tgz#c1148e2e1aa166614f05161ee8f77ded467062bc"
3481-
integrity sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==
3478+
"@next/env@13.3.1":
3479+
version "13.3.1"
3480+
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.3.1.tgz#589707043065f6b71d411ed9b8f1ffd057c0fd4a"
3481+
integrity sha512-EDtCoedIZC7JlUQ3uaQpSc4aVmyhbLHmQVALg7pFfQgOTjgSnn7mKtA0DiCMkYvvsx6aFb5octGMtWrOtGXW9A==
34823482

34833483
34843484
version "14.2.3"
34853485
resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.3.tgz#d6def29d1c763c0afb397343a15a82e7d92353a0"
34863486
integrity sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==
34873487

3488+
"@next/env@^13.4.3":
3489+
version "13.5.4"
3490+
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.4.tgz#777c3af16de2cf2f611b6c8126910062d13d222c"
3491+
integrity sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==
3492+
34883493
34893494
version "13.5.6"
34903495
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.5.6.tgz#cf279b94ddc7de49af8e8957f0c3b7349bc489bf"
34913496
integrity sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==
34923497
dependencies:
34933498
glob "7.1.7"
34943499

3495-
"@next/swc-darwin-arm64@13.5.6":
3496-
version "13.5.6"
3497-
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz#b15d139d8971360fca29be3bdd703c108c9a45fb"
3498-
integrity sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==
3500+
"@next/swc-darwin-arm64@13.3.1":
3501+
version "13.3.1"
3502+
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.3.1.tgz#2c9719dd10a9cdf63bf50a7576b05dcf78999fe8"
3503+
integrity sha512-UXPtriEc/pBP8luSLSCZBcbzPeVv+SSjs9cH/KygTbhmACye8/OOXRZO13Z2Wq1G0gLmEAIHQAOuF+vafPd2lw==
34993504

35003505
35013506
version "14.2.3"
35023507
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz#db1a05eb88c0224089b815ad10ac128ec79c2cdb"
35033508
integrity sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==
35043509

3505-
"@next/swc-darwin-x64@13.5.6":
3506-
version "13.5.6"
3507-
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.6.tgz#9c72ee31cc356cb65ce6860b658d807ff39f1578"
3508-
integrity sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==
3510+
"@next/swc-darwin-x64@13.3.1":
3511+
version "13.3.1"
3512+
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.3.1.tgz#0be90342c89e53a390ccd9bece15f7f5cd480049"
3513+
integrity sha512-lT36yYxosCfLtplFzJWgo0hrPu6/do8+msgM7oQkPeohDNdhjtjFUgOOwdSnPublLR6Mo2Ym4P/wl5OANuD2bw==
35093514

35103515
35113516
version "14.2.3"
35123517
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz#a3f8af05b5f9a52ac3082e66ac29e125ab1d7b9c"
35133518
integrity sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==
35143519

3515-
"@next/swc-linux-arm64-gnu@13.5.6":
3516-
version "13.5.6"
3517-
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.6.tgz#59f5f66155e85380ffa26ee3d95b687a770cfeab"
3518-
integrity sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==
3520+
"@next/swc-linux-arm64-gnu@13.3.1":
3521+
version "13.3.1"
3522+
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.3.1.tgz#a7353265839f8b8569a346a444dc3ab3770d297e"
3523+
integrity sha512-wRb76nLWJhonH8s3kxC/1tFguEkeOPayIwe9mkaz1G/yeS3OrjeyKMJsb4+Kdg0zbTo53bNCOl59NNtDM7yyyw==
35193524

35203525
35213526
version "14.2.3"
35223527
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz#4e63f43879285b52554bfd39e6e0cc78a9b27bbf"
35233528
integrity sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==
35243529

3525-
"@next/swc-linux-arm64-musl@13.5.6":
3526-
version "13.5.6"
3527-
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.6.tgz#f012518228017052736a87d69bae73e587c76ce2"
3528-
integrity sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==
3530+
"@next/swc-linux-arm64-musl@13.3.1":
3531+
version "13.3.1"
3532+
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.3.1.tgz#24552e6102c350e372f83f505a1d93c880551a50"
3533+
integrity sha512-qz3BzjJRZ16Iq/jrp+pjiYOc0jTjHlfmxQmZk9x/+5uhRP6/eWQSTAPVJ33BMo6oK5O5N4644OgTAbzXzorecg==
35293534

35303535
35313536
version "14.2.3"
35323537
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz#ebdaed26214448b1e6f2c3e8b3cd29bfba387990"
35333538
integrity sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==
35343539

3535-
"@next/swc-linux-x64-gnu@13.5.6":
3536-
version "13.5.6"
3537-
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.6.tgz#339b867a7e9e7ee727a700b496b269033d820df4"
3538-
integrity sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==
3540+
"@next/swc-linux-x64-gnu@13.3.1":
3541+
version "13.3.1"
3542+
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.3.1.tgz#5f335a683b6eafa52307b12af97782993b6c45ff"
3543+
integrity sha512-6mgkLmwlyWlomQmpl21I3hxgqE5INoW4owTlcLpNsd1V4wP+J46BlI/5zV5KWWbzjfncIqzXoeGs5Eg+1GHODA==
35393544

35403545
35413546
version "14.2.3"
35423547
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz#19e3bcc137c3b582a1ab867106817e5c90a20593"
35433548
integrity sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==
35443549

3545-
"@next/swc-linux-x64-musl@13.5.6":
3546-
version "13.5.6"
3547-
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.6.tgz#ae0ae84d058df758675830bcf70ca1846f1028f2"
3548-
integrity sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==
3550+
"@next/swc-linux-x64-musl@13.3.1":
3551+
version "13.3.1"
3552+
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.3.1.tgz#58e5aad6f97203a0788783f66324456c8f9cdb50"
3553+
integrity sha512-uqm5sielhQmKJM+qayIhgZv1KlS5pqTdQ99b+Z7hMWryXS96qE0DftTmMZowBcUL6x7s2vSXyH5wPtO1ON7LBg==
35493554

35503555
35513556
version "14.2.3"
35523557
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz#794a539b98e064169cf0ff7741b2a4fb16adec7d"
35533558
integrity sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==
35543559

3555-
"@next/swc-win32-arm64-msvc@13.5.6":
3556-
version "13.5.6"
3557-
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.6.tgz#a5cc0c16920485a929a17495064671374fdbc661"
3558-
integrity sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==
3560+
"@next/swc-win32-arm64-msvc@13.3.1":
3561+
version "13.3.1"
3562+
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.3.1.tgz#f8ed1badab57ed4503969758754e6fb0cf326753"
3563+
integrity sha512-WomIiTj/v3LevltlibNQKmvrOymNRYL+a0dp5R73IwPWN5FvXWwSELN/kiNALig/+T3luc4qHNTyvMCp9L6U5Q==
35593564

35603565
35613566
version "14.2.3"
35623567
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz#eda9fa0fbf1ff9113e87ac2668ee67ce9e5add5a"
35633568
integrity sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==
35643569

3565-
"@next/swc-win32-ia32-msvc@13.5.6":
3566-
version "13.5.6"
3567-
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.6.tgz#6a2409b84a2cbf34bf92fe714896455efb4191e4"
3568-
integrity sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==
3570+
"@next/swc-win32-ia32-msvc@13.3.1":
3571+
version "13.3.1"
3572+
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.3.1.tgz#7f599c8975b09ee5527cc49b9e5a4d13be50635a"
3573+
integrity sha512-M+PoH+0+q658wRUbs285RIaSTYnGBSTdweH/0CdzDgA6Q4rBM0sQs4DHmO3BPP0ltCO/vViIoyG7ks66XmCA5g==
35693574

35703575
35713576
version "14.2.3"
35723577
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz#7c1190e3f640ab16580c6bdbd7d0e766b9920457"
35733578
integrity sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==
35743579

3575-
"@next/swc-win32-x64-msvc@13.5.6":
3576-
version "13.5.6"
3577-
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.6.tgz#4a3e2a206251abc729339ba85f60bc0433c2865d"
3578-
integrity sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==
3580+
"@next/swc-win32-x64-msvc@13.3.1":
3581+
version "13.3.1"
3582+
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.3.1.tgz#192d43ab44ebb98bd4f5865d0e1d7ce62703182f"
3583+
integrity sha512-Sl1F4Vp5Z1rNXWZYqJwMuWRRol4bqOB6+/d7KqkgQ4AcafKPN1PZmpkCoxv4UFHtFNIB7EotnuIhtXu3zScicQ==
35793584

35803585
35813586
version "14.2.3"
@@ -3909,10 +3914,10 @@
39093914
resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9"
39103915
integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==
39113916

3912-
3913-
version "0.5.2"
3914-
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d"
3915-
integrity sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==
3917+
3918+
version "0.5.0"
3919+
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.0.tgz#bf1d807b60f7290d0ec763feea7ccdeda06e85f1"
3920+
integrity sha512-SjY/p4MmECVVEWspzSRpQEM3sjR17sP8PbGxELWrT+YZMBfiUyt1MRUNjMV23zohwlG2HYtCQOsCwsTHguXkyg==
39163921
dependencies:
39173922
tslib "^2.4.0"
39183923

@@ -4412,15 +4417,20 @@
44124417
resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756"
44134418
integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==
44144419

4415-
"@types/unist@*", "@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2":
4420+
"@types/unist@*", "@types/unist@^3.0.0":
4421+
version "3.0.0"
4422+
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a"
4423+
integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==
4424+
4425+
"@types/unist@^2":
44164426
version "2.0.10"
44174427
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc"
44184428
integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==
44194429

4420-
"@types/unist@^3.0.0":
4421-
version "3.0.0"
4422-
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.0.tgz#988ae8af1e5239e89f9fbb1ade4c935f4eeedf9a"
4423-
integrity sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==
4430+
"@types/unist@^2.0.0", "@types/unist@^2.0.2":
4431+
version "2.0.6"
4432+
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
4433+
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
44244434

44254435
"@types/ws@^8.0.0":
44264436
version "8.5.4"
@@ -8392,11 +8402,6 @@ glob-parent@^6.0.2:
83928402
dependencies:
83938403
is-glob "^4.0.3"
83948404

8395-
glob-to-regexp@^0.4.1:
8396-
version "0.4.1"
8397-
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
8398-
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
8399-
84008405
84018406
version "7.1.6"
84028407
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
@@ -12033,7 +12038,12 @@ mz@^2.7.0:
1203312038
object-assign "^4.0.1"
1203412039
thenify-all "^1.0.0"
1203512040

12036-
nanoid@^3.3.6, nanoid@^3.3.7:
12041+
nanoid@^3.3.4, nanoid@^3.3.6:
12042+
version "3.3.6"
12043+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
12044+
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
12045+
12046+
nanoid@^3.3.7:
1203712047
version "3.3.7"
1203812048
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
1203912049
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
@@ -12080,6 +12090,28 @@ [email protected]:
1208012090
dependencies:
1208112091
file-loader "^4.2.0"
1208212092

12093+
12094+
version "13.3.1"
12095+
resolved "https://registry.yarnpkg.com/next/-/next-13.3.1.tgz#17625f7423db2e059d71b41bd9031756cf2b33bc"
12096+
integrity sha512-eByWRxPzKHs2oQz1yE41LX35umhz86ZSZ+mYyXBqn2IBi2hyUqxBA88avywdr4uyH+hCJczegGsDGWbzQA5Rqw==
12097+
dependencies:
12098+
"@next/env" "13.3.1"
12099+
"@swc/helpers" "0.5.0"
12100+
busboy "1.6.0"
12101+
caniuse-lite "^1.0.30001406"
12102+
postcss "8.4.14"
12103+
styled-jsx "5.1.1"
12104+
optionalDependencies:
12105+
"@next/swc-darwin-arm64" "13.3.1"
12106+
"@next/swc-darwin-x64" "13.3.1"
12107+
"@next/swc-linux-arm64-gnu" "13.3.1"
12108+
"@next/swc-linux-arm64-musl" "13.3.1"
12109+
"@next/swc-linux-x64-gnu" "13.3.1"
12110+
"@next/swc-linux-x64-musl" "13.3.1"
12111+
"@next/swc-win32-arm64-msvc" "13.3.1"
12112+
"@next/swc-win32-ia32-msvc" "13.3.1"
12113+
"@next/swc-win32-x64-msvc" "13.3.1"
12114+
1208312115
1208412116
version "14.2.3"
1208512117
resolved "https://registry.yarnpkg.com/next/-/next-14.2.3.tgz#f117dd5d5f20c307e7b8e4f9c1c97d961008925d"
@@ -12103,29 +12135,6 @@ [email protected]:
1210312135
"@next/swc-win32-ia32-msvc" "14.2.3"
1210412136
"@next/swc-win32-x64-msvc" "14.2.3"
1210512137

12106-
next@^13.3.0:
12107-
version "13.5.6"
12108-
resolved "https://registry.yarnpkg.com/next/-/next-13.5.6.tgz#e964b5853272236c37ce0dd2c68302973cf010b1"
12109-
integrity sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==
12110-
dependencies:
12111-
"@next/env" "13.5.6"
12112-
"@swc/helpers" "0.5.2"
12113-
busboy "1.6.0"
12114-
caniuse-lite "^1.0.30001406"
12115-
postcss "8.4.31"
12116-
styled-jsx "5.1.1"
12117-
watchpack "2.4.0"
12118-
optionalDependencies:
12119-
"@next/swc-darwin-arm64" "13.5.6"
12120-
"@next/swc-darwin-x64" "13.5.6"
12121-
"@next/swc-linux-arm64-gnu" "13.5.6"
12122-
"@next/swc-linux-arm64-musl" "13.5.6"
12123-
"@next/swc-linux-x64-gnu" "13.5.6"
12124-
"@next/swc-linux-x64-musl" "13.5.6"
12125-
"@next/swc-win32-arm64-msvc" "13.5.6"
12126-
"@next/swc-win32-ia32-msvc" "13.5.6"
12127-
"@next/swc-win32-x64-msvc" "13.5.6"
12128-
1212912138
1213012139
version "3.0.0-alpha.22"
1213112140
resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-3.0.0-alpha.22.tgz#c003350f6ea3873be09f0ac4d8042d9b157888e5"
@@ -13094,6 +13103,15 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
1309413103
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
1309513104
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
1309613105

13106+
13107+
version "8.4.14"
13108+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
13109+
integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
13110+
dependencies:
13111+
nanoid "^3.3.4"
13112+
picocolors "^1.0.0"
13113+
source-map-js "^1.0.2"
13114+
1309713115
1309813116
version "8.4.31"
1309913117
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
@@ -15881,14 +15899,6 @@ walker@^1.0.8:
1588115899
dependencies:
1588215900
makeerror "1.0.12"
1588315901

15884-
15885-
version "2.4.0"
15886-
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
15887-
integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
15888-
dependencies:
15889-
glob-to-regexp "^0.4.1"
15890-
graceful-fs "^4.1.2"
15891-
1589215902
wcwidth@^1.0.1:
1589315903
version "1.0.1"
1589415904
resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"

0 commit comments

Comments
 (0)