Skip to content

Update Gatsby 3 and all other dependencies #1069

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '16.5.0'

- run: yarn install

Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.5.0
10 changes: 10 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,13 @@ exports.createPages = async ({ graphql, actions }) => {
})
})
}

exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
fallback: {
"assert": require.resolve("assert/"),
}
}
})
}
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,36 @@
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@graphql-tools/schema": "7.0.0",
"@weknow/gatsby-remark-twitter": "^0.2.3",
"codemirror": "5.58.2",
"codemirror-graphql": "0.12.3",
"gatsby": "2.25.0",
"gatsby-plugin-anchor-links": "1.1.1",
"gatsby-plugin-feed": "2.6.0",
"gatsby-plugin-google-analytics": "2.4.0",
"gatsby-plugin-less": "4.0.6",
"gatsby-plugin-react-helmet": "3.3.14",
"gatsby-plugin-webfonts": "1.1.3",
"gatsby-source-filesystem": "2.4.0",
"gatsby-transformer-remark": "2.9.0",
"globby": "11.0.1",
"graphql": "15.4.0",
"marked": "1.2.2",
"@graphql-tools/schema": "7.1.5",
"@weknow/gatsby-remark-twitter": "0.2.3",
"assert": "2.0.0",
"codemirror": "5.62.2",
"codemirror-graphql": "1.0.2",
"gatsby": "3.10.1",
"gatsby-plugin-anchor-links": "1.2.1",
"gatsby-plugin-feed": "3.10.0",
"gatsby-plugin-google-analytics": "3.10.0",
"gatsby-plugin-less": "5.10.0",
"gatsby-plugin-react-helmet": "4.10.0",
"gatsby-plugin-webfonts": "2.1.1",
"gatsby-source-filesystem": "3.10.0",
"gatsby-transformer-remark": "4.7.0",
"globby": "11.0.4",
"graphql": "15.5.1",
"marked": "2.1.3",
"numbro": "2.3.2",
"parser-front-matter": "1.6.4",
"prism-react-renderer": "1.1.1",
"prismjs": "1.22.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"prism-react-renderer": "1.2.1",
"prismjs": "1.24.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"timeago.js": "4.0.2"
},
"devDependencies": {
"@types/codemirror": "0.0.98",
"@types/prismjs": "1.16.2",
"@types/react-helmet": "6.1.0",
"prettier": "2.1.2"
"@types/codemirror": "5.60.2",
"@types/prismjs": "1.16.6",
"@types/react-helmet": "6.1.2",
"prettier": "2.3.2"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Entity GraphQL
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)
url: https://github.com/lukemurray/EntityGraphQL
github: lukemurray/EntityGraphQL
url: https://github.com/EntityGraphQL/EntityGraphQL
github: EntityGraphQL/EntityGraphQL
---


Loading