Skip to content

Commit e8b852e

Browse files
authored
Merge pull request graphql#1069 from Urigo/gatsby-3
Update Gatsby 3 and all other dependencies
2 parents bf5f484 + 932248e commit e8b852e

File tree

6 files changed

+4118
-4441
lines changed

6 files changed

+4118
-4441
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1
1010
- uses: actions/setup-node@v1
11+
with:
12+
node-version: '16.5.0'
1113

1214
- run: yarn install
1315

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.5.0

gatsby-node.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,3 +367,13 @@ exports.createPages = async ({ graphql, actions }) => {
367367
})
368368
})
369369
}
370+
371+
exports.onCreateWebpackConfig = ({ actions }) => {
372+
actions.setWebpackConfig({
373+
resolve: {
374+
fallback: {
375+
"assert": require.resolve("assert/"),
376+
}
377+
}
378+
})
379+
}

package.json

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,36 @@
1212
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
1313
},
1414
"dependencies": {
15-
"@graphql-tools/schema": "7.0.0",
16-
"@weknow/gatsby-remark-twitter": "^0.2.3",
17-
"codemirror": "5.58.2",
18-
"codemirror-graphql": "0.12.3",
19-
"gatsby": "2.25.0",
20-
"gatsby-plugin-anchor-links": "1.1.1",
21-
"gatsby-plugin-feed": "2.6.0",
22-
"gatsby-plugin-google-analytics": "2.4.0",
23-
"gatsby-plugin-less": "4.0.6",
24-
"gatsby-plugin-react-helmet": "3.3.14",
25-
"gatsby-plugin-webfonts": "1.1.3",
26-
"gatsby-source-filesystem": "2.4.0",
27-
"gatsby-transformer-remark": "2.9.0",
28-
"globby": "11.0.1",
29-
"graphql": "15.4.0",
30-
"marked": "1.2.2",
15+
"@graphql-tools/schema": "7.1.5",
16+
"@weknow/gatsby-remark-twitter": "0.2.3",
17+
"assert": "2.0.0",
18+
"codemirror": "5.62.2",
19+
"codemirror-graphql": "1.0.2",
20+
"gatsby": "3.10.1",
21+
"gatsby-plugin-anchor-links": "1.2.1",
22+
"gatsby-plugin-feed": "3.10.0",
23+
"gatsby-plugin-google-analytics": "3.10.0",
24+
"gatsby-plugin-less": "5.10.0",
25+
"gatsby-plugin-react-helmet": "4.10.0",
26+
"gatsby-plugin-webfonts": "2.1.1",
27+
"gatsby-source-filesystem": "3.10.0",
28+
"gatsby-transformer-remark": "4.7.0",
29+
"globby": "11.0.4",
30+
"graphql": "15.5.1",
31+
"marked": "2.1.3",
3132
"numbro": "2.3.2",
3233
"parser-front-matter": "1.6.4",
33-
"prism-react-renderer": "1.1.1",
34-
"prismjs": "1.22.0",
35-
"react": "17.0.1",
36-
"react-dom": "17.0.1",
34+
"prism-react-renderer": "1.2.1",
35+
"prismjs": "1.24.1",
36+
"react": "17.0.2",
37+
"react-dom": "17.0.2",
3738
"react-helmet": "6.1.0",
3839
"timeago.js": "4.0.2"
3940
},
4041
"devDependencies": {
41-
"@types/codemirror": "0.0.98",
42-
"@types/prismjs": "1.16.2",
43-
"@types/react-helmet": "6.1.0",
44-
"prettier": "2.1.2"
42+
"@types/codemirror": "5.60.2",
43+
"@types/prismjs": "1.16.6",
44+
"@types/react-helmet": "6.1.2",
45+
"prettier": "2.3.2"
4546
}
4647
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Entity GraphQL
33
description: .NET Core GraphQL library. Compiles to IQueryable to easily expose a schema from an existing data model (E.g. from an Entity Framework data model)
4-
url: https://github.com/lukemurray/EntityGraphQL
5-
github: lukemurray/EntityGraphQL
4+
url: https://github.com/EntityGraphQL/EntityGraphQL
5+
github: EntityGraphQL/EntityGraphQL
66
---
77

88

0 commit comments

Comments
 (0)