Skip to content

Commit

Permalink
fix: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gbicou committed Nov 7, 2023
1 parent 8154053 commit b61e7a9
Show file tree
Hide file tree
Showing 7 changed files with 2,880 additions and 1,911 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ dist

# Env
.env
.envrc

# Testing
reports
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.7.0
20.9.0
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"preview": "nuxi preview"
},
"devDependencies": {
"@nuxt-themes/docus": "^1.14.6",
"nuxt": "^3.7.3"
"@nuxt-themes/docus": "^1.15.0",
"nuxt": "^3.8.1"
}
}
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:build": "nuxi build playground",
"dev:start": "nuxi start playground",
"build": "nuxt-module-build",
"build": "nuxt-module-build build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
Expand All @@ -36,31 +36,31 @@
"release": "semantic-release"
},
"dependencies": {
"@nuxt/kit": "^3.7.3",
"@urql/core": "^4.1.3",
"@nuxt/kit": "^3.8.1",
"@urql/core": "^4.1.4",
"@urql/vue": "^1.1.2"
},
"devDependencies": {
"@bicou/countries-server": "^1.3.3",
"@bicou/semantic-release": "^1.0.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.1",
"@nuxt/schema": "^3.7.3",
"@nuxt/test-utils": "^3.7.3",
"@types/node": "^20.6.3",
"@nuxt/module-builder": "^0.5.3",
"@nuxt/schema": "^3.8.1",
"@nuxt/test-utils": "^3.8.1",
"@types/node": "^20.8.10",
"@urql/exchange-execute": "^2.2.2",
"defu": "^6.1.2",
"eslint": "^8.49.0",
"defu": "^6.1.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tsdoc": "^0.2.17",
"graphql": "^16.8.1",
"nuxt": "^3.7.3",
"nuxt": "^3.8.1",
"prettier": "^3.0.3",
"semantic-release": "^22.0.0",
"vitest": "^0.34.4",
"vue": "^3.3.4"
"semantic-release": "^22.0.7",
"vitest": "^0.34.6",
"vue": "^3.3.8"
},
"peerDependencies": {
"defu": "^6.1.2",
Expand Down
13 changes: 13 additions & 0 deletions playground/gql/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,21 @@ export type GraphCacheResolvers = {
export type GraphCacheOptimisticUpdaters = {};

export type GraphCacheUpdaters = {
Query?: {
countries?: GraphCacheUpdateResolver<{ countries: Array<WithTypename<Country>> }, Record<string, never>>;
country?: GraphCacheUpdateResolver<{ country: Maybe<WithTypename<Country>> }, QueryCountryArgs>;
version?: GraphCacheUpdateResolver<{ version: Scalars["String"] }, Record<string, never>>;
};
Mutation?: {};
Subscription?: {};
Country?: {
alpha3?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
code?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
name?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
neighbours?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
numeric?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
tld?: GraphCacheUpdateResolver<Maybe<WithTypename<Country>>, Record<string, never>>;
};
};

export type GraphCacheConfig = Parameters<typeof offlineExchange>[0] & {
Expand Down
12 changes: 6 additions & 6 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/typescript-urql-graphcache": "^2.4.5",
"@graphql-codegen/urql-introspection": "^2.2.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@graphql-codegen/typescript-urql-graphcache": "^3.0.0",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@picocss/pico": "^1.5.10",
"@types/node": "^20.6.3",
"sass": "^1.67.0",
"@types/node": "^20.8.10",
"sass": "^1.69.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
Expand Down
Loading

2 comments on commit b61e7a9

@vercel
Copy link

@vercel vercel bot commented on b61e7a9 Nov 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nuxt-urql-playground – ./playground

nuxt-urql-playground.vercel.app
nuxt-urql-playground-bicou.vercel.app
nuxt-urql-playground-git-main-bicou.vercel.app

@vercel
Copy link

@vercel vercel bot commented on b61e7a9 Nov 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nuxt-urql-docs – ./docs

nuxt-urql-docs.vercel.app
nuxt-urql-docs-bicou.vercel.app
nuxt-urql-docs-git-main-bicou.vercel.app

Please sign in to comment.