Skip to content

Commit

Permalink
fix(create-gatsby): Missing "plugins" in cmses.json (#36566)
Browse files Browse the repository at this point in the history
* initial

* update all

* update stuff :D
  • Loading branch information
LekoArts committed Sep 8, 2022
1 parent a373d80 commit e79623c
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions packages/create-gatsby/src/questions/cmses.json
@@ -1,15 +1,18 @@
{
"gatsby-source-contentful": {
"message": "Contentful",
"dependencies": [
"plugins": [
"gatsby-plugin-image",
"gatsby-plugin-sharp"
"gatsby-plugin-sharp",
"gatsby-transformer-sharp"
]
},
"gatsby-source-datocms": {
"message": "DatoCMS",
"dependences": [
"gatsby-plugin-image"
"plugins": [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp"
]
},
"gatsby-plugin-netlify-cms": {
Expand All @@ -20,19 +23,23 @@
},
"gatsby-source-sanity": {
"message": "Sanity",
"dependencies": [
"gatsby-plugin-image"
"plugins": [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp"
]
},
"gatsby-source-shopify": {
"message": "Shopify",
"dependencies": [
"gatsby-plugin-image"
"plugins": [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp"
]
},
"gatsby-source-wordpress": {
"message": "WordPress",
"dependencies": [
"plugins": [
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp"
Expand Down

0 comments on commit e79623c

Please sign in to comment.