Add gatsby-plugin-feed

This commit is contained in:
Mathias Bynens 2017-11-08 23:11:41 +01:00
parent 6d51a2cc86
commit 7eb56eea79
3 changed files with 909 additions and 201 deletions

View file

@ -2,6 +2,8 @@ module.exports = {
siteMetadata: { siteMetadata: {
title: "Gatsby Starter Blog", title: "Gatsby Starter Blog",
author: "Kyle Mathews", author: "Kyle Mathews",
description: "A starter blog demonstrating what Gatsby can do.",
siteUrl: "https://gatsbyjs.github.io/gatsby-starter-blog/",
}, },
plugins: [ plugins: [
{ {
@ -41,6 +43,7 @@ module.exports = {
//trackingId: `ADD YOUR TRACKING ID HERE`, //trackingId: `ADD YOUR TRACKING ID HERE`,
}, },
}, },
`gatsby-plugin-feed`,
`gatsby-plugin-offline`, `gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`, `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": { "dependencies": {
"gatsby": "^1.9.108", "gatsby": "^1.9.108",
"gatsby-link": "^1.6.26", "gatsby-link": "^1.6.26",
"gatsby-plugin-feed": "^1.3.13",
"gatsby-plugin-google-analytics": "^1.0.12", "gatsby-plugin-google-analytics": "^1.0.12",
"gatsby-plugin-offline": "^1.0.10", "gatsby-plugin-offline": "^1.0.10",
"gatsby-plugin-react-helmet": "^1.0.8", "gatsby-plugin-react-helmet": "^1.0.8",
@ -22,16 +23,16 @@
"gatsby-source-filesystem": "^1.5.8", "gatsby-source-filesystem": "^1.5.8",
"gatsby-transformer-remark": "^1.7.20", "gatsby-transformer-remark": "^1.7.20",
"gatsby-transformer-sharp": "^1.6.13", "gatsby-transformer-sharp": "^1.6.13",
"lodash": "^4.15.0", "lodash": "^4.17.4",
"react-responsive-grid": "^0.3.3", "react-responsive-grid": "^0.3.4",
"typeface-merriweather": "^0.0.35", "typeface-merriweather": "^0.0.43",
"typeface-montserrat": "^0.0.37", "typeface-montserrat": "^0.0.43",
"typography-theme-wordpress-2016": "^0.15.1" "typography-theme-wordpress-2016": "^0.15.10"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^4.9.0", "eslint": "^4.11.0",
"eslint-plugin-react": "^7.4.0", "eslint-plugin-react": "^7.4.0",
"gh-pages": "^0.12.0", "gh-pages": "^1.0.0",
"prettier": "^1.8.2" "prettier": "^1.8.2"
}, },
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme", "homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",