Merge pull request #68 from mathiasbynens/rss

Add gatsby-plugin-feed
This commit is contained in:
Kyle Mathews 2017-11-13 09:41:57 -08:00 committed by GitHub
commit 53c290251d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 909 additions and 201 deletions

View file

@ -2,6 +2,8 @@ module.exports = {
siteMetadata: {
title: "Gatsby Starter Blog",
author: "Kyle Mathews",
description: "A starter blog demonstrating what Gatsby can do.",
siteUrl: "https://gatsbyjs.github.io/gatsby-starter-blog/",
},
plugins: [
{
@ -41,6 +43,7 @@ module.exports = {
//trackingId: `ADD YOUR TRACKING ID HERE`,
},
},
`gatsby-plugin-feed`,
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
{

1092
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,6 +9,7 @@
"dependencies": {
"gatsby": "^1.9.108",
"gatsby-link": "^1.6.26",
"gatsby-plugin-feed": "^1.3.13",
"gatsby-plugin-google-analytics": "^1.0.12",
"gatsby-plugin-offline": "^1.0.10",
"gatsby-plugin-react-helmet": "^1.0.8",
@ -22,16 +23,16 @@
"gatsby-source-filesystem": "^1.5.8",
"gatsby-transformer-remark": "^1.7.20",
"gatsby-transformer-sharp": "^1.6.13",
"lodash": "^4.15.0",
"react-responsive-grid": "^0.3.3",
"typeface-merriweather": "^0.0.35",
"typeface-montserrat": "^0.0.37",
"typography-theme-wordpress-2016": "^0.15.1"
"lodash": "^4.17.4",
"react-responsive-grid": "^0.3.4",
"typeface-merriweather": "^0.0.43",
"typeface-montserrat": "^0.0.43",
"typography-theme-wordpress-2016": "^0.15.10"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint": "^4.11.0",
"eslint-plugin-react": "^7.4.0",
"gh-pages": "^0.12.0",
"gh-pages": "^1.0.0",
"prettier": "^1.8.2"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",