Skip to content

Commit 9a097f2

Browse files
committed
chore: attribute owner and author to Jason Kuhrt
1 parent d7d0a8d commit 9a097f2

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Graphcool
3+
Copyright (c) 2022 Jason Kuhrt
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Minimal GraphQL client supporting Node and browsers for scripts or simple apps
44

5-
![GitHub Action](https://github.com/prisma-labs/graphql-request/workflows/trunk/badge.svg) [![npm version](https://badge.fury.io/js/graphql-request.svg)](https://badge.fury.io/js/graphql-request)
5+
![GitHub Action](https://github.com/jasonkuhrt/graphql-request/workflows/trunk/badge.svg) [![npm version](https://badge.fury.io/js/graphql-request.svg)](https://badge.fury.io/js/graphql-request)
66

77
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
88
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/prisma/graphql-request.git"
17+
"url": "https://github.com/jasonkuhrt/graphql-request.git"
1818
},
1919
"keywords": [
2020
"graphql",
@@ -23,12 +23,16 @@
2323
"graphql-client",
2424
"apollo"
2525
],
26-
"author": "Prisma Labs Team",
26+
"author": {
27+
"name" : "Jason Kuhrt",
28+
"email" : "jasonkuhrt@me.com",
29+
"url" : "https://kuhrt.me"
30+
},
2731
"license": "MIT",
2832
"bugs": {
29-
"url": "https://github.com/prisma/graphql-request/issues"
33+
"url": "https://github.com/jasonkuhrt/graphql-request/issues"
3034
},
31-
"homepage": "https://github.com/prisma/graphql-request",
35+
"homepage": "https://github.com/jasonkuhrt/graphql-request",
3236
"scripts": {
3337
"build:docs": "doctoc README.md --notitle",
3438
"dev": "rm -rf dist && tsc --watch",

src/types.dom.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*
44
* This module is inlined to avoid consumers needing to add dom lib to their tsconfig. For original motivations see:
55
*
6-
* - https://github.com/prisma-labs/graphql-request/issues/26
7-
* - https://github.com/prisma-labs/graphql-request/issues/15
6+
* - https://github.com/jasonkuhrt/graphql-request/issues/26
7+
* - https://github.com/jasonkuhrt/graphql-request/issues/15
88
*/
99

1010
/** This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs.  You can add to this using methods like append() (see Examples.) In all methods of this interface, header names are matched by case-insensitive byte sequence. */

0 commit comments

Comments
 (0)