Skip to content
This repository was archived by the owner on Dec 22, 2024. It is now read-only.

Commit 402dbae

Browse files
committed
Upgrade dependencies
1 parent 9733032 commit 402dbae

File tree

3 files changed

+1404
-614
lines changed

3 files changed

+1404
-614
lines changed

gatsby-node.ts

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
import { GatsbyNode } from 'gatsby';
22
import { CreateGenericPages } from './src/gatsby/createPages/createGenericPages';
33

4-
const node: GatsbyNode = {
5-
createPages: async args => {
6-
await CreateGenericPages(args);
7-
},
8-
onCreateNode: async args => {},
4+
export const createPages: GatsbyNode['createPages'] = async args => {
5+
await CreateGenericPages(args);
96
};
10-
11-
export default node;

package.json

+27-28
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,42 @@
66
"version": "0.1.0",
77
"author": "openscript",
88
"dependencies": {
9-
"@emotion/react": "^11.7.1",
10-
"@emotion/styled": "^11.6.0",
11-
"gatsby": "^4.6.0",
12-
"gatsby-plugin-emotion": "^7.6.0",
9+
"@emotion/react": "^11.8.2",
10+
"@emotion/styled": "^11.8.1",
11+
"gatsby": "^4.11.1",
12+
"gatsby-plugin-emotion": "^7.11.0",
1313
"gatsby-plugin-i18n-l10n": "^4.6.0",
14-
"gatsby-plugin-image": "^2.6.0",
15-
"gatsby-plugin-manifest": "^4.6.0",
16-
"gatsby-plugin-offline": "^5.6.0",
17-
"gatsby-plugin-react-helmet": "^5.6.0",
18-
"gatsby-plugin-sharp": "^4.6.0",
19-
"gatsby-remark-autolink-headers": "^5.6.0",
20-
"gatsby-remark-copy-linked-files": "^5.6.0",
21-
"gatsby-remark-images": "^6.6.0",
22-
"gatsby-source-filesystem": "^4.6.0",
23-
"gatsby-transformer-remark": "^5.6.0",
24-
"gatsby-transformer-sharp": "^4.6.0",
25-
"gatsby-ts": "^1.0.0-rc.1",
26-
"graphql": "15.6.1",
27-
"interweave": "^12.9.0",
14+
"gatsby-plugin-image": "^2.11.1",
15+
"gatsby-plugin-manifest": "^4.11.1",
16+
"gatsby-plugin-offline": "^5.11.1",
17+
"gatsby-plugin-react-helmet": "^5.11.0",
18+
"gatsby-plugin-sharp": "^4.11.1",
19+
"gatsby-remark-autolink-headers": "^5.11.1",
20+
"gatsby-remark-copy-linked-files": "^5.11.0",
21+
"gatsby-remark-images": "^6.11.1",
22+
"gatsby-source-filesystem": "^4.11.1",
23+
"gatsby-transformer-remark": "^5.11.1",
24+
"gatsby-transformer-sharp": "^4.11.0",
25+
"graphql": "16.3.0",
26+
"interweave": "^13.0.0",
2827
"limax": "^3.0.0",
2928
"react": "^17.0.2",
3029
"react-dom": "^17.0.2",
3130
"react-helmet": "^6.1.0",
32-
"react-intl": "^5.24.4"
31+
"react-intl": "^5.24.8"
3332
},
3433
"devDependencies": {
35-
"@babel/core": "^7.16.12",
36-
"@graphql-codegen/cli": "^2.4.0",
37-
"@graphql-codegen/typescript": "^2.4.2",
38-
"@graphql-codegen/typescript-operations": "^2.2.2",
39-
"@types/node": "^17.0.12",
34+
"@babel/core": "^7.17.8",
35+
"@graphql-codegen/cli": "^2.6.2",
36+
"@graphql-codegen/typescript": "^2.4.8",
37+
"@graphql-codegen/typescript-operations": "^2.3.5",
38+
"@types/node": "^17.0.23",
4039
"@types/react-helmet": "^6.1.5",
4140
"babel-eslint": "^10.1.0",
42-
"eslint": "^8.7.0",
43-
"prettier": "2.5.1",
44-
"ts-node": "^10.4.0",
45-
"typescript": "^4.5.5"
41+
"eslint": "^8.12.0",
42+
"prettier": "2.6.2",
43+
"ts-node": "^10.7.0",
44+
"typescript": "^4.6.3"
4645
},
4746
"keywords": [
4847
"gatsby"

0 commit comments

Comments
 (0)