Skip to content

Commit 13b6b97

Browse files
committed
fix docs and fixed deps issues
1 parent 884a939 commit 13b6b97

File tree

10 files changed

+25
-29
lines changed

10 files changed

+25
-29
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
33
"changelog": [
44
"@changesets/changelog-github",
5-
{ "repo": "urigo/graphql-modules" }
5+
{ "repo": "graphql-hive/graphql-modules" }
66
],
77
"commit": false,
88
"linked": [],

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Have a question?
4-
url: https://github.com/Urigo/graphql-modules/discussions/new
4+
url: https://github.com/graphql-hive/graphql-modules/discussions/new
55
about: Not sure about something? need help from the community? have a question to our team? please ask and answer questions here.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- [![modules](https://user-images.githubusercontent.com/25294569/64067074-ed185b80-cc2a-11e9-8f4d-5f1e19feaa0a.gif)](https://graphql-modules.com/) -->
55

66
[![npm version](https://badge.fury.io/js/graphql-modules.svg)](https://www.npmjs.com/package/graphql-modules)
7-
![CI](https://github.com/Urigo/graphql-modules/workflows/CI/badge.svg)
7+
![CI](https://github.com/graphql-hive/graphql-modules/workflows/CI/badge.svg)
88
[![Discord Chat](https://img.shields.io/discord/625400653321076807)](https://the-guild.dev/discord)
99
[![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg?maxAge=2592000)]()
1010

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@
7373
"typescript": "5.8.2",
7474
"ws": "8.18.1"
7575
},
76+
"resolutions": {
77+
"rollup": "2.79.2"
78+
},
7679
"prettier": {
7780
"trailingComma": "es5",
7881
"semi": true,

website/src/app/layout.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const RootLayout: FC<{
3838
logo={logo}
3939
layoutProps={{
4040
docsRepositoryBase:
41-
'https://github.com/Urigo/graphql-modules/tree/master/website',
41+
'https://github.com/graphql-hive/graphql-modules/tree/master/website',
4242
footer: (
4343
<HiveFooter
4444
logo={
@@ -77,7 +77,7 @@ const RootLayout: FC<{
7777
children: 'Blog',
7878
},
7979
{
80-
href: 'https://github.com/Urigo/graphql-modules',
80+
href: 'https://github.com/graphql-hive/graphql-modules',
8181
icon: <GitHubIcon />,
8282
children: 'GitHub',
8383
},

website/src/app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function IndexPage() {
3939
</CallToAction>
4040
<CallToAction
4141
variant="tertiary"
42-
href="https://github.com/Urigo/graphql-modules"
42+
href="https://github.com/graphql-hive/graphql-modules"
4343
>
4444
<GitHubIcon className="size-6" />
4545
GitHub

website/src/content/api.mdx

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## `CONTEXT`
44

5-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/application/tokens.ts)
5+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/application/tokens.ts)
66

77
`CONTEXT` is an InjectionToken representing the provided `GraphQLModules.GlobalContext`
88

@@ -17,7 +17,7 @@ export class Data {
1717

1818
## `MODULE_ID`
1919

20-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/module/tokens.ts)
20+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/module/tokens.ts)
2121

2222
`MODULE_ID` is an InjectionToken representing module's ID
2323

@@ -34,7 +34,7 @@ export class Data {
3434

3535
## `Application`
3636

37-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/application/types.ts)
37+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/application/types.ts)
3838

3939
A return type of `createApplication` function.
4040

@@ -51,7 +51,7 @@ A return type of `createApplication` function.
5151

5252
## `ApplicationConfig`
5353

54-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/application/types.ts)
54+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/application/types.ts)
5555

5656
Application's configuration object. Represents the first argument of `createApplication` function.
5757

@@ -62,7 +62,7 @@ Application's configuration object. Represents the first argument of `createAppl
6262

6363
## `createApplication`
6464

65-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/application/application.ts)
65+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/application/application.ts)
6666

6767
Creates Application out of Modules. Accepts `ApplicationConfig`.
6868

@@ -79,7 +79,7 @@ const app = createApplication({
7979

8080
## `createModule`
8181

82-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/module/module.ts)
82+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/module/module.ts)
8383

8484
Creates a Module, an element used by Application. Accepts `ModuleConfig`.
8585

@@ -99,7 +99,7 @@ export const usersModule = createModule({
9999

100100
## `ModuleConfig`
101101

102-
[source file](https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/src/module/types.ts)
102+
[source file](https://github.com/graphql-hive/graphql-modules/blob/master/packages/graphql-modules/src/module/types.ts)
103103

104104
Module's configuration object. Represents the first argument of `createModule` function.
105105

website/src/content/get-started.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ const subscribe = application.createSubscription()
223223

224224
<Callout>
225225
In case you are still having issues, you can always [report an issue on a
226-
missing integration](https://github.com/Urigo/graphql-modules/issues/new), and
226+
missing integration](https://github.com/graphql-hive/graphql-modules/issues/new), and
227227
we'll look into that ;)
228228
</Callout>
229229

website/src/giscus.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Giscus as Giscus_ } from '@theguild/components';
33
export const Giscus = () => {
44
return (
55
<Giscus_
6-
repo="Urigo/graphql-modules"
6+
repo="graphql-hive/graphql-modules"
77
repoId="MDEwOlJlcG9zaXRvcnkxMzI5Mjc2NjU="
88
category="Docs Discussions"
99
categoryId="DIC_kwDOB-xQsc4CSDST"

yarn.lock

+7-14
Original file line numberDiff line numberDiff line change
@@ -9321,11 +9321,6 @@ [email protected], fsevents@^2.3.2, fsevents@~2.3.2:
93219321
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
93229322
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
93239323

9324-
fsevents@~2.1.2:
9325-
version "2.1.3"
9326-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
9327-
integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
9328-
93299324
function-bind@^1.1.2:
93309325
version "1.1.2"
93319326
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
@@ -14349,14 +14344,7 @@ [email protected]:
1434914344
resolve "1.15.1"
1435014345
tslib "1.11.1"
1435114346

14352-
14353-
version "2.3.2"
14354-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.3.2.tgz#afa68e4f3325bcef4e150d082056bef450bcac60"
14355-
integrity sha512-p66+fbfaUUOGE84sHXAOgfeaYQMslgAazoQMp//nlR519R61213EPFgrMZa48j31jNacJwexSAR1Q8V/BwGKBA==
14356-
optionalDependencies:
14357-
fsevents "~2.1.2"
14358-
14359-
rollup@^2.74.1:
14347+
1436014348
version "2.79.2"
1436114349
resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.2.tgz#f150e4a5db4b121a21a747d762f701e5e9f49090"
1436214350
integrity sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==
@@ -15481,7 +15469,7 @@ tshy@^1.14.0:
1548115469
typescript "5"
1548215470
walk-up-path "^3.0.1"
1548315471

15484-
[email protected], tslib@^1.11.1, tslib@^1.8.1:
15472+
[email protected], tslib@^1.8.1:
1548515473
version "1.11.1"
1548615474
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
1548715475
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
@@ -15491,6 +15479,11 @@ tslib@2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.1, t
1549115479
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
1549215480
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
1549315481

15482+
tslib@^1.11.1:
15483+
version "1.14.1"
15484+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
15485+
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
15486+
1549415487
tsup@^5.11.6:
1549515488
version "5.12.9"
1549615489
resolved "https://registry.yarnpkg.com/tsup/-/tsup-5.12.9.tgz#8cdd9b4bc6493317cb92edf5f3476920dddcdb18"

0 commit comments

Comments
 (0)