Browse Source

upgrade some gatsby deps

main
Alex Krolick 7 years ago
parent
commit
d9cd3e311f
  1. 12
      package.json
  2. 4
      src/pages/docs/error-decoder.html.js
  3. 4
      src/templates/blog.js
  4. 4
      src/templates/community.js
  5. 4
      src/templates/docs.js
  6. 4
      src/templates/tutorial.js
  7. 740
      yarn.lock

12
package.json

@ -25,30 +25,30 @@
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-relay": "^0.0.19",
"flow-bin": "^0.56.0",
"gatsby": "^1.9.181",
"gatsby": "^1.9.273",
"gatsby-link": "^1.6.9",
"gatsby-plugin-catch-links": "^1.0.9",
"gatsby-plugin-feed": "^1.3.9",
"gatsby-plugin-glamor": "^1.6.4",
"gatsby-plugin-google-analytics": "^1.0.4",
"gatsby-plugin-manifest": "^1.0.4",
"gatsby-plugin-netlify": "^1.0.4",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-nprogress": "^1.0.7",
"gatsby-plugin-react-helmet": "^1.0.3",
"gatsby-plugin-react-next": "^1.0.3",
"gatsby-plugin-sharp": "^1.6.2",
"gatsby-plugin-sharp": "^1.6.48",
"gatsby-plugin-twitter": "^1.0.10",
"gatsby-remark-autolink-headers": "^1.4.4",
"gatsby-remark-code-repls": "^1.0.2",
"gatsby-remark-copy-linked-files": "^1.5.2",
"gatsby-remark-embed-snippet": "^1.0.22",
"gatsby-remark-images": "^1.5.11",
"gatsby-remark-images": "^1.5.67",
"gatsby-remark-prismjs": "^1.2.24",
"gatsby-remark-responsive-iframe": "^1.4.3",
"gatsby-remark-smartypants": "^1.4.3",
"gatsby-source-filesystem": "^1.4.4",
"gatsby-transformer-remark": "^1.7.2",
"gatsby-transformer-sharp": "^1.6.1",
"gatsby-transformer-remark": "^1.7.44",
"gatsby-transformer-sharp": "^1.6.27",
"glamor": "^2.20.40",
"hex2rgba": "^0.0.1",
"prettier": "^1.7.4",

4
src/pages/docs/error-decoder.html.js

@ -104,7 +104,9 @@ export const pageQuery = graphql`
markdownRemark(fields: {slug: {eq: $slug}}) {
html
fields {
path
path {
id
}
}
frontmatter {
title

4
src/templates/blog.js

@ -60,7 +60,9 @@ export const pageQuery = graphql`
}
fields {
date(formatString: "MMMM DD, YYYY")
path
path {
id
}
slug
}
}

4
src/templates/community.js

@ -35,7 +35,9 @@ export const pageQuery = graphql`
prev
}
fields {
path
path {
id
}
slug
}
}

4
src/templates/docs.js

@ -35,7 +35,9 @@ export const pageQuery = graphql`
prev
}
fields {
path
path {
id
}
slug
}
}

4
src/templates/tutorial.js

@ -47,7 +47,9 @@ export const pageQuery = graphql`
prev
}
fields {
path
path {
id
}
slug
}
}

740
yarn.lock

File diff suppressed because it is too large
Loading…
Cancel
Save