Skip to content

Commit 4a81ff7

Browse files
committed
Update changesets
1 parent c36defb commit 4a81ff7

File tree

5 files changed

+34
-16
lines changed

5 files changed

+34
-16
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
---
22
'@graphql-tools/delegate': patch
3+
'@graphql-tools/batch-delegate': patch
4+
'@graphql-tools/links': patch
5+
'@graphql-tools/url-loader': patch
6+
'@graphql-tools/stitch': patch
7+
'@graphql-tools/stitching-directives': patch
8+
'@graphql-tools/wrap': patch
39
---
410

511
fix(delegate): fix ESM import

.github/workflows/website.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ jobs:
3939
run: node scripts/install-typedocs-typescript-version.js
4040
- name: Install Dependencies using Yarn
4141
run: yarn install --ignore-engines && git checkout yarn.lock
42+
- name: Build Website
43+
run: cd website/ && yarn build && yarn export && touch out/.nojekyll
4244
- name: Deploy 🚀
43-
run: yarn deploy:website
44-
env:
45-
GIT_USER: theguild-bot
45+
uses: JamesIves/[email protected]
46+
with:
47+
branch: gh-pages # The branch the action should deploy to.
48+
folder: website/out # The folder the action should deploy.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,4 @@ package-lock.json
7979
website/yarn.lock
8080
website/api-sidebar.json
8181
website/docs/api
82+
website/out

website/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dev": "concurrently -r \"next-remote-watch ./docs ./src/pages/_app.tsx ./src/pages/_document.tsx\" \"wait-on -s 1 http://localhost:3000 && open-cli http://localhost:3000\"",
88
"next": "next",
99
"start": "next start",
10+
"export": "next export",
1011
"analyze": "cross-env ANALYZE=true next build"
1112
},
1213
"pnpm": { "overrides": { "esbuild": "^0.12.8" } },

yarn.lock

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,13 +1226,20 @@
12261226
dependencies:
12271227
regenerator-runtime "^0.13.4"
12281228

1229-
"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.13.10", "@babel/runtime@^7.13.17", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.5", "@babel/runtime@^7.7.2":
1229+
"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.13.10", "@babel/runtime@^7.14.0", "@babel/runtime@^7.7.2":
12301230
version "7.14.6"
12311231
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d"
12321232
integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==
12331233
dependencies:
12341234
regenerator-runtime "^0.13.4"
12351235

1236+
"@babel/runtime@^7.12.0", "@babel/runtime@^7.13.17", "@babel/runtime@^7.14.5":
1237+
version "7.14.8"
1238+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.8.tgz#7119a56f421018852694290b9f9148097391b446"
1239+
integrity sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==
1240+
dependencies:
1241+
regenerator-runtime "^0.13.4"
1242+
12361243
"@babel/template@^7.12.7", "@babel/template@^7.14.5", "@babel/template@^7.3.3":
12371244
version "7.14.5"
12381245
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
@@ -2956,9 +2963,9 @@
29562963
integrity sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA==
29572964

29582965
"@types/i18next-fs-backend@^1.0.0":
2959-
version "1.0.0"
2960-
resolved "https://registry.yarnpkg.com/@types/i18next-fs-backend/-/i18next-fs-backend-1.0.0.tgz#3fb0374f4d376375b7cc1d3729bca663d104fa64"
2961-
integrity sha512-PotQ0NE17NavxXCsdyq9qIKZQOB7+A5O/2nDdvfbfm6/IgvvC1YUO6hxK3nIHASu+QGjO1QV5J8PJw4OL12LMQ==
2966+
version "1.0.1"
2967+
resolved "https://registry.yarnpkg.com/@types/i18next-fs-backend/-/i18next-fs-backend-1.0.1.tgz#275950fa3c1c3366c829cb3728dfbc4ef2566ceb"
2968+
integrity sha512-zJDqz/xg3j2qJNr4t+fUgGEC30Xq/rqM8iF8sraN/nBVwIoItcpUwc/Wvwqs9pEgNpDgZ0PXRoWhoicwozSM3g==
29622969
dependencies:
29632970
i18next "^19.7.0"
29642971

@@ -7098,9 +7105,9 @@ i18next@^19.7.0:
70987105
"@babel/runtime" "^7.12.0"
70997106

71007107
i18next@^20.1.0:
7101-
version "20.3.2"
7102-
resolved "https://registry.yarnpkg.com/i18next/-/i18next-20.3.2.tgz#5195e76b9e0848a1c198001bf6c7fc72995a55f1"
7103-
integrity sha512-e8CML2R9Ng2sSQOM80wb/PrM2j8mDm84o/T4Amzn9ArVyNX5/ENWxxAXkRpZdTQNDaxKImF93Wep4mAoozFrKw==
7108+
version "20.3.5"
7109+
resolved "https://registry.yarnpkg.com/i18next/-/i18next-20.3.5.tgz#14308b79a3f1cafb24fdcd8e182d3673baf1e979"
7110+
integrity sha512-//MGeU6n4TencJmCgG+TCrpdgAD/NDEU/KfKQekYbJX6QV7sD/NjWQdVdBi+bkT0snegnSoB7QhjSeatrk3a0w==
71047111
dependencies:
71057112
"@babel/runtime" "^7.12.0"
71067113

@@ -9105,9 +9112,9 @@ neo-async@^2.6.0, neo-async@^2.6.2:
91059112
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
91069113

91079114
next-i18next@^8.5.1:
9108-
version "8.5.3"
9109-
resolved "https://registry.yarnpkg.com/next-i18next/-/next-i18next-8.5.3.tgz#219cfb0567afbe505b47a0fc084fba5247fb985a"
9110-
integrity sha512-XV+dL7iW/aOpDMIcWIB2HhfSC9cpaM9yXggE9zJFh+7r2UxJVfC23pw3u5MHFgwkcw5daC4SDBvZoVRrXSFdYQ==
9115+
version "8.5.5"
9116+
resolved "https://registry.yarnpkg.com/next-i18next/-/next-i18next-8.5.5.tgz#d1a7476929236050986965eb59d6f44d7631d11a"
9117+
integrity sha512-zYXYToVB5W2qmDbWmuT/7j+PC/CqCysZsvMY2nmIyqpgaIBhMDKHYSi8+0nJ7SG1q7i9D+wQdJNd8KLdpe4/ng==
91119118
dependencies:
91129119
"@babel/runtime" "^7.13.17"
91139120
"@types/hoist-non-react-statics" "^3.3.1"
@@ -10297,9 +10304,9 @@ [email protected]:
1029710304
use-sidecar "^1.0.1"
1029810305

1029910306
react-i18next@^11.8.13:
10300-
version "11.11.1"
10301-
resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.11.1.tgz#758edd7ef521f6703c2d6b83f3165d078f7acf35"
10302-
integrity sha512-MtfzPEOvx0ev2cz0HmrEcduuqkktSa5bfeN8Flp0cvN0xP3H3MRSTa8P6pxPtqstHbRe1cD9QBOr5T/FEV2gOw==
10307+
version "11.11.4"
10308+
resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-11.11.4.tgz#f6f9a1c827e7a5271377de2bf14db04cb1c9e5ce"
10309+
integrity sha512-ayWFlu8Sc7GAxW1PzMaPtzq+yiozWMxs0P1WeITNVzXAVRhC0Httkzw/IiODBta6seJRBCLrtUeFUSXhAIxlRg==
1030310310
dependencies:
1030410311
"@babel/runtime" "^7.14.5"
1030510312
html-parse-stringify "^3.0.1"

0 commit comments

Comments
 (0)