Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#4444)
Browse files Browse the repository at this point in the history
* fix(deps): update all non-major dependencies

* Fixes

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com>
  • Loading branch information
3 people committed May 9, 2022
1 parent 61175ad commit f95a664
Show file tree
Hide file tree
Showing 5 changed files with 582 additions and 916 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
echo "deb https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
sudo apt-get update
sudo apt-get install k6
sudo apt-get install k6=0.37.0
- name: GraphQL API
working-directory: ./benchmark/federation
run: |
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
"@types/node": "16.11.33",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"babel-jest": "28.0.3",
"babel-jest": "28.1.0",
"bob-the-bundler": "1.7.1",
"chalk": "4.1.2",
"concurrently": "7.1.0",
"eslint": "8.14.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
Expand All @@ -64,7 +64,7 @@
"graphql": "16.4.0",
"graphql-subscriptions": "2.0.0",
"husky": "7.0.4",
"jest": "28.0.3",
"jest": "28.1.0",
"lint-staged": "12.4.1",
"patch-package": "6.4.7",
"prettier": "2.6.2",
Expand Down
7 changes: 3 additions & 4 deletions website/docs/schema-loading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ For notes on typescript, refer to [loaders](/docs/schema-loading#loaders)
## Load `typeDefs`/`DocumentNode` and `resolvers` from files

```ts
const { loadFiles } = require('@graphql-tools/load-files');
const { loadFiles } = require('@graphql-tools/load-files')
const { createServer } = require('@graphql-yoga/node')

async function main() {
const server = createServer({
server: {
typeDefs: await loadFiles('src/typeDefs/**/*.graphql'),
resolvers: await loadFiles('src/resolvers/**/*.{js,ts}'),
resolvers: await loadFiles('src/resolvers/**/*.{js,ts}')
}
})
await server.start();
await server.start()
}
```

Expand Down Expand Up @@ -172,7 +172,6 @@ async function main() {
}

main().catch(error => console.error(error))

```

## Loaders
Expand Down
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@types/concurrently": "6.4.0",
"@types/mdx-js__react": "1.5.5",
"@types/node": "16.11.33",
"@types/react": "18.0.8",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"concurrently": "7.1.0",
"cross-env": "7.0.3",
Expand All @@ -44,7 +44,7 @@
"@guild-docs/client": "2.1.1",
"@guild-docs/server": "3.0.1",
"@mdx-js/react": "2.1.1",
"@theguild/components": "1.11.2",
"@theguild/components": "1.11.4",
"framer-motion": "6.3.3",
"next": "12.1.6",
"next-i18next": "11.0.0",
Expand Down

1 comment on commit f95a664

@vercel
Copy link

@vercel vercel bot commented on f95a664 May 9, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.