Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit dacf265

Browse files
authored
Graphql typegen (#106) 🚀
* Upgrade * graphql typegen completed * Ready for production 🚀
1 parent 847f060 commit dacf265

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+26082
-26194
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ module.exports = {
3232
"@typescript-eslint/no-unused-vars": "error",
3333
"react/jsx-uses-react": "off",
3434
"react/react-in-jsx-scope": "off",
35+
"@typescript-eslint/no-namespace": "off",
36+
"no-undef": "off",
3537
},
3638
overrides: [
3739
// Override some TypeScript rules just for .js files

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: '16'
18+
node-version: '18'
1919
- name: Cache npm
2020
uses: actions/cache@v1
2121
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup Node
1212
uses: actions/setup-node@v1
1313
with:
14-
node-version: '16'
14+
node-version: '18'
1515
- name: Cache npm
1616
uses: actions/cache@v1
1717
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: '16'
19+
node-version: '18'
2020
- name: Release
2121
env:
2222
GATSBY_ALGOLIA_APP_ID: ${{ secrets.GATSBY_ALGOLIA_APP_ID }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: '16'
18+
node-version: '18'
1919
- name: Cache npm
2020
uses: actions/cache@v1
2121
with:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,5 @@ fabric.properties
105105

106106
# Env private keys
107107
.env
108+
109+
./src/gatsby-types.d.ts

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps = true

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ My website has been created for Github Pages using:
7979
* [gatsby-remark-embed-video](https://www.gatsbyjs.com/plugins/gatsby-remark-embed-video/)
8080
* [gatsby-remark-katex](https://www.gatsbyjs.com/plugins/gatsby-remark-katex/)
8181
* [gatsby-remark-prismjs](https://www.gatsbyjs.com/plugins/gatsby-remark-prismjs/)
82-
* [gatsby-plugin-graphql-codegen](https://www.gatsbyjs.com/plugins/gatsby-plugin-graphql-codegen/)
8382
* [gatsby-plugin-feed](https://www.gatsbyjs.com/plugins/gatsby-plugin-feed/)
8483
* [gatsby-plugin-catch-links](https://www.gatsbyjs.com/plugins/gatsby-plugin-catch-links/)
8584
* [gatsby-plugin-loadable-components-ssr](https://www.gatsbyjs.com/plugins/gatsby-plugin-loadable-components-ssr/)

__stories__/atoms/icon.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import { Icon } from "../../src/components/design-system/atoms/icon";
33
import { Meta } from "@storybook/react";
4-
import { Github } from "styled-icons/boxicons-logos";
4+
import { Github } from "@styled-icons/boxicons-logos";
55

66
export const IconContainer: React.VFC = () => (
77
<Icon>

__stories__/molecules/social-contact.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
SocialContact,
55
SocialContactProps,
66
} from "../../src/components/design-system/molecules/social-contact";
7-
import { Linkedin } from "styled-icons/boxicons-logos";
7+
import { Linkedin } from "@styled-icons/boxicons-logos";
88

99
const Template: Story<SocialContactProps> = (args) => (
1010
<SocialContact {...args} />

0 commit comments

Comments
 (0)