chore(deps): lock file maintenance (#3636)
This commit is contained in:
parent
3a666e26b5
commit
df1c27073b
@ -17,19 +17,19 @@
|
|||||||
"@emotion/styled": "^10.0.27",
|
"@emotion/styled": "^10.0.27",
|
||||||
"dayjs": "^1.8.23",
|
"dayjs": "^1.8.23",
|
||||||
"emotion-theming": "^10.0.27",
|
"emotion-theming": "^10.0.27",
|
||||||
"gatsby": "2.20.8",
|
"gatsby": "2.20.25",
|
||||||
"gatsby-plugin-catch-links": "2.2.1",
|
"gatsby-plugin-catch-links": "2.2.3",
|
||||||
"gatsby-plugin-emotion": "^4.2.0",
|
"gatsby-plugin-emotion": "^4.2.0",
|
||||||
"gatsby-plugin-manifest": "2.3.3",
|
"gatsby-plugin-manifest": "2.3.5",
|
||||||
"gatsby-plugin-netlify-cms": "^4.2.0",
|
"gatsby-plugin-netlify-cms": "^4.2.0",
|
||||||
"gatsby-plugin-react-helmet": "3.2.1",
|
"gatsby-plugin-react-helmet": "3.2.4",
|
||||||
"gatsby-remark-autolink-headers": "2.2.1",
|
"gatsby-remark-autolink-headers": "2.2.3",
|
||||||
"gatsby-remark-external-links": "^0.0.4",
|
"gatsby-remark-external-links": "^0.0.4",
|
||||||
"gatsby-remark-prismjs": "3.4.1",
|
"gatsby-remark-prismjs": "3.4.3",
|
||||||
"gatsby-source-filesystem": "2.2.2",
|
"gatsby-source-filesystem": "2.2.4",
|
||||||
"gatsby-transformer-json": "2.3.1",
|
"gatsby-transformer-json": "2.3.3",
|
||||||
"gatsby-transformer-remark": "2.7.1",
|
"gatsby-transformer-remark": "2.7.3",
|
||||||
"gatsby-transformer-yaml": "2.3.1",
|
"gatsby-transformer-yaml": "2.3.3",
|
||||||
"js-yaml": "^3.13.1",
|
"js-yaml": "^3.13.1",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.15",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
@ -38,7 +38,7 @@
|
|||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.13.1",
|
||||||
"react-github-btn": "^1.1.1",
|
"react-github-btn": "^1.1.1",
|
||||||
"react-helmet": "^5.2.1",
|
"react-helmet": "^6.0.0",
|
||||||
"react-markdown": "^4.3.1",
|
"react-markdown": "^4.3.1",
|
||||||
"smooth-scroll": "^16.1.2"
|
"smooth-scroll": "^16.1.2"
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { graphql, StaticQuery } from 'gatsby';
|
import { graphql, StaticQuery } from 'gatsby';
|
||||||
import { ThemeProvider } from 'emotion-theming';
|
import { ThemeProvider } from 'emotion-theming';
|
||||||
import Header from './header';
|
import Header from './header';
|
||||||
|
@ -4,7 +4,7 @@ import styled from '@emotion/styled';
|
|||||||
import theme from '../theme';
|
import theme from '../theme';
|
||||||
|
|
||||||
const StyledMarkdown = styled.div`
|
const StyledMarkdown = styled.div`
|
||||||
> :first-child {
|
> :first-of-type {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
> :last-child {
|
> :last-child {
|
||||||
@ -81,7 +81,7 @@ const StyledMarkdown = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
tbody tr {
|
tbody tr {
|
||||||
&:nth-child(odd) {
|
&:nth-of-type(odd) {
|
||||||
background: #fdfdfd;
|
background: #fdfdfd;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
|
|
||||||
const TwitterMeta = ({ title, description, image, imageAlt }) => (
|
const TwitterMeta = ({ title, description, image, imageAlt }) => (
|
||||||
<Helmet>
|
<Helmet>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { Link, graphql } from 'gatsby';
|
import { Link, graphql } from 'gatsby';
|
||||||
import { css } from '@emotion/core';
|
import { css } from '@emotion/core';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { graphql } from 'gatsby';
|
import { graphql } from 'gatsby';
|
||||||
|
|
||||||
import Layout from '../components/layout';
|
import Layout from '../components/layout';
|
||||||
@ -20,6 +20,7 @@ export const pageQuery = graphql`
|
|||||||
query communityPage {
|
query communityPage {
|
||||||
markdownRemark(fileAbsolutePath: { regex: "/community/" }) {
|
markdownRemark(fileAbsolutePath: { regex: "/community/" }) {
|
||||||
frontmatter {
|
frontmatter {
|
||||||
|
title
|
||||||
headline
|
headline
|
||||||
subhead
|
subhead
|
||||||
sections {
|
sections {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { graphql } from 'gatsby';
|
import { graphql } from 'gatsby';
|
||||||
import { trimStart, trimEnd } from 'lodash';
|
import { trimStart, trimEnd } from 'lodash';
|
||||||
import { css } from '@emotion/core';
|
import { css } from '@emotion/core';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { graphql } from 'gatsby';
|
import { graphql } from 'gatsby';
|
||||||
import 'prismjs/themes/prism-tomorrow.css';
|
import 'prismjs/themes/prism-tomorrow.css';
|
||||||
|
|
||||||
|
1471
website/yarn.lock
1471
website/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user