This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: allow to be installed with npm7+ and graphql@14 Downgrade `@graphql-codegen/*` to 1.17.0 such that it would use `@graphql-tools/[email protected]` which uses `relay-compiler@9`, the last version supporting `graphql@14`. * fix: allow users to use any version of typescript at their choice * fix: ignore errors from @types/webpack * fix: update the endpoint for graphql-pokemon see lucasbento/graphql-pokemon#15 * chore: add a github actions for ensuring install is possible on npm7 * feat: support gatsby v3 * style: reformat the code for eslint * v2 maintenance update for Gatsby v2, GraphQL 14 and npm7 (#129) * fix: allow to be installed with npm7+ and graphql@14 Downgrade `@graphql-codegen/*` to 1.17.0 such that it would use `@graphql-tools/[email protected]` which uses `relay-compiler@9`, the last version supporting `graphql@14`. * fix: allow users to use any version of typescript at their choice * fix: ignore errors from @types/webpack * fix: update the endpoint for graphql-pokemon see lucasbento/graphql-pokemon#15 * chore: add a github actions for ensuring install is possible on npm7 * v2.7.3 Co-authored-by: Derek Nguyen <[email protected]>
- Loading branch information
1 parent
8928933
commit d13a713
Showing
10 changed files
with
5,039 additions
and
5,958 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,32 +21,32 @@ | |
"author": "Derek Nguyen <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@graphql-codegen/core": "1.17.0", | ||
"@graphql-codegen/plugin-helpers": "1.17.0", | ||
"@graphql-codegen/typescript": "1.17.0", | ||
"@graphql-codegen/typescript-operations": "1.17.0", | ||
"@graphql-tools/code-file-loader": "6.0.15", | ||
"@graphql-tools/graphql-file-loader": "6.0.15", | ||
"@graphql-tools/graphql-tag-pluck": "6.0.15", | ||
"@graphql-tools/json-file-loader": "6.0.15", | ||
"@graphql-tools/load": "6.0.15", | ||
"@graphql-tools/url-loader": "6.0.15", | ||
"@graphql-tools/utils": "6.0.15", | ||
"fs-extra": "9.0.1", | ||
"@graphql-codegen/core": "^1.17.10", | ||
"@graphql-codegen/plugin-helpers": "^1.18.0", | ||
"@graphql-codegen/typescript": "^1.22.0", | ||
"@graphql-codegen/typescript-operations": "^1.18.0", | ||
"@graphql-tools/code-file-loader": "^6.3.1", | ||
"@graphql-tools/graphql-file-loader": "^6.2.7", | ||
"@graphql-tools/graphql-tag-pluck": "^6.5.1", | ||
"@graphql-tools/json-file-loader": "^6.2.6", | ||
"@graphql-tools/load": "^6.2.8", | ||
"@graphql-tools/url-loader": "^6.10.1", | ||
"@graphql-tools/utils": "^7.10.0", | ||
"fs-extra": "^10.0.0", | ||
"lodash.debounce": "4.0.8" | ||
}, | ||
"peerDependencies": { | ||
"gatsby": "^2.12.1", | ||
"graphql": "^14.6.0", | ||
"gatsby": "^3.0.0", | ||
"graphql": "^15.0.0", | ||
"typescript": "*" | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "9.0.1", | ||
"@types/lodash.debounce": "4.0.6", | ||
"@types/node": "14.0.27", | ||
"gatsby": "2.24.27", | ||
"graphql": "14.7.0", | ||
"typescript": "3.9.7" | ||
"@types/fs-extra": "^9.0.0", | ||
"@types/lodash.debounce": "^4.0.0", | ||
"@types/node": "^15.0.0", | ||
"gatsby": "^3.0.0", | ||
"graphql": "^15.0.0", | ||
"typescript": "^4.3.2" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/d4rekanguok/gatsby-typescript/issues" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,14 @@ | |
"author": "Derek Nguyen <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"fork-ts-checker-webpack-plugin": "5.0.14", | ||
"fs-extra": "9.0.1", | ||
"gatsby-plugin-graphql-codegen": "^2.7.3", | ||
"ts-loader": "8.0.2" | ||
"fork-ts-checker-webpack-plugin": "^6.2.10", | ||
"fs-extra": "^10.0.0", | ||
"gatsby-plugin-graphql-codegen": "^2.7.2", | ||
"ts-loader": "^9.2.2" | ||
}, | ||
"peerDependencies": { | ||
"gatsby": "^2.12.1", | ||
"graphql": "^14.6.0", | ||
"gatsby": "^3.0.0", | ||
"graphql": "^15.0.0", | ||
"typescript": "*" | ||
}, | ||
"peerDependenciesMeta": { | ||
|
@@ -35,11 +35,10 @@ | |
} | ||
}, | ||
"devDependencies": { | ||
"@types/fs-extra": "9.0.1", | ||
"@types/node": "14.0.27", | ||
"@types/webpack": "4.41.21", | ||
"gatsby": "2.24.27", | ||
"typescript": "3.9.7" | ||
"@types/fs-extra": "^9.0.0", | ||
"@types/node": "^14.0.0", | ||
"gatsby": "^3.0.0", | ||
"typescript": "^4.3.2" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/d4rekanguok/gatsby-typescript/issues" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,26 +5,26 @@ | |
"version": "2.7.3", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"@types/react": "16.9.44", | ||
"@types/react-dom": "16.9.8", | ||
"@types/react-helmet": "6.1.0", | ||
"gatsby": "2.24.27", | ||
"gatsby-image": "2.4.14", | ||
"gatsby-plugin-manifest": "2.4.21", | ||
"gatsby-plugin-offline": "3.2.21", | ||
"gatsby-plugin-react-helmet": "3.3.10", | ||
"gatsby-plugin-sharp": "2.6.24", | ||
"gatsby-plugin-ts": "^2.7.3", | ||
"gatsby-source-filesystem": "2.3.23", | ||
"gatsby-transformer-sharp": "2.5.12", | ||
"graphql-tag": "2.11.0", | ||
"react": "16.13.1", | ||
"react-dom": "16.13.1", | ||
"react-helmet": "6.1.0", | ||
"typescript": "3.9.7" | ||
"@types/react": "^17.0.8", | ||
"@types/react-dom": "^17.0.5", | ||
"@types/react-helmet": "^6.1.1", | ||
"gatsby": "^3.0.0", | ||
"gatsby-image": "^3.0.0", | ||
"gatsby-plugin-manifest": "^3.0.0", | ||
"gatsby-plugin-offline": "^4.0.0", | ||
"gatsby-plugin-react-helmet": "^4", | ||
"gatsby-plugin-sharp": "^3.0.0", | ||
"gatsby-plugin-ts": "^2.7.2", | ||
"gatsby-source-filesystem": "^3.0.0", | ||
"gatsby-transformer-sharp": "^3.6.0", | ||
"graphql-tag": "^2.12.4", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"react-helmet": "^6.1.0" | ||
}, | ||
"devDependencies": { | ||
"prettier": "2.0.5" | ||
"prettier": "^2.3.0", | ||
"typescript": "^4.3.2" | ||
}, | ||
"keywords": [ | ||
"gatsby" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.