Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Commit dc56589

Browse files
chore(demo): use-gatsby-plugin-image (#57)
* feat: update to use gatsby-plugin-image * chore: add yarn.lock * chore(config): add gatsby-plugin-image as listed plugin Co-authored-by: Jamie Barton <jamie@notrab.dev>
1 parent 9721eba commit dc56589

File tree

6 files changed

+173
-29
lines changed

6 files changed

+173
-29
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ public
66
package-lock.json
77
npm-debug.log*
88
yarn-debug.log*
9-
yarn-error.log*
9+
yarn-error.log*
10+
11+
demo/.env.development
12+
demo/.env.production

demo/gatsby-config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ module.exports = {
1313
},
1414
},
1515
'gatsby-transformer-sharp',
16+
'gatsby-plugin-image',
1617
],
1718
};

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@chec/gatsby-source-chec": "*",
1515
"gatsby": "3.6.1",
16-
"gatsby-image": "3.6.0",
16+
"gatsby-plugin-image": "^1.8.0",
1717
"gatsby-plugin-sharp": "3.6.0",
1818
"gatsby-transformer-sharp": "3.6.0",
1919
"react": "17.0.2",

demo/src/templates/ProductPage.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
import React from 'react';
22
import { graphql } from 'gatsby';
3-
import Img from 'gatsby-image';
3+
import { GatsbyImage, getImage } from 'gatsby-plugin-image';
44

55
export default function ProductPage({ data: { product } }) {
66
const { name, price, images } = product;
77
const [mainImage] = images;
88

99
return (
1010
<React.Fragment>
11-
{mainImage && (
12-
<Img
13-
fluid={mainImage.childImageSharp.fluid}
14-
style={{ maxWidth: '50%' }}
15-
/>
16-
)}
11+
{mainImage && <GatsbyImage image={getImage(mainImage)} alt={name} />}
1712
<h1>{name}</h1>
1813
<p>{price.formatted_with_symbol}</p>
1914
</React.Fragment>
@@ -30,9 +25,7 @@ export const pageQuery = graphql`
3025
}
3126
images {
3227
childImageSharp {
33-
fluid(maxWidth: 560) {
34-
...GatsbyImageSharpFluid
35-
}
28+
gatsbyImageData
3629
}
3730
}
3831
}

gatsby-source-chec/README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# @chec/gatsby-source-chec
22

3-
🛍 Gatsby plugin for sourcing products, categories and merchant info from your Chec store
3+
🛍 Gatsby plugin for sourcing products, categories and merchant info from your Chec store.
4+
45

56
## Install
67

@@ -56,8 +57,24 @@ plugins: [
5657

5758
## Downloading image assets
5859

59-
This plugin provides you the option to download product asset images, and cache them in your Gatsby project. This works great with [`gatsby-image`](https://www.gatsbyjs.org/packages/gatsby-image).
60+
This plugin provides you the option to download product asset images, and cache them in your Gatsby project. This works great with [`gatsby-plugin-image`](https://www.gatsbyjs.com/plugins/gatsby-plugin-image/).
6061

6162
Add `downloadImageAssets: true` to your plugin options.
6263

63-
These assets will be added as `images` to the `ChecProduct` nodes.
64+
These assets will be added as `images` to the `product` nodes.
65+
66+
67+
```graphql
68+
product: checProduct(id: { eq: $id }) {
69+
id
70+
name
71+
price {
72+
formatted_with_symbol
73+
}
74+
images {
75+
childImageSharp {
76+
gatsbyImageData
77+
}
78+
}
79+
}
80+
```

yarn.lock

Lines changed: 144 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
dependencies:
3131
"@babel/highlight" "^7.8.3"
3232

33+
"@babel/code-frame@^7.14.0", "@babel/code-frame@^7.14.5":
34+
version "7.14.5"
35+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
36+
integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
37+
dependencies:
38+
"@babel/highlight" "^7.14.5"
39+
3340
"@babel/code-frame@^7.5.5":
3441
version "7.12.13"
3542
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
@@ -123,6 +130,15 @@
123130
jsesc "^2.5.1"
124131
source-map "^0.5.0"
125132

133+
"@babel/generator@^7.14.5":
134+
version "7.14.5"
135+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785"
136+
integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==
137+
dependencies:
138+
"@babel/types" "^7.14.5"
139+
jsesc "^2.5.1"
140+
source-map "^0.5.0"
141+
126142
"@babel/helper-annotate-as-pure@^7.10.4":
127143
version "7.10.4"
128144
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
@@ -226,20 +242,43 @@
226242
"@babel/template" "^7.10.4"
227243
"@babel/types" "^7.10.4"
228244

245+
"@babel/helper-function-name@^7.14.5":
246+
version "7.14.5"
247+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4"
248+
integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==
249+
dependencies:
250+
"@babel/helper-get-function-arity" "^7.14.5"
251+
"@babel/template" "^7.14.5"
252+
"@babel/types" "^7.14.5"
253+
229254
"@babel/helper-get-function-arity@^7.10.4":
230255
version "7.10.4"
231256
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
232257
integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
233258
dependencies:
234259
"@babel/types" "^7.10.4"
235260

261+
"@babel/helper-get-function-arity@^7.14.5":
262+
version "7.14.5"
263+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815"
264+
integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==
265+
dependencies:
266+
"@babel/types" "^7.14.5"
267+
236268
"@babel/helper-hoist-variables@^7.10.4":
237269
version "7.10.4"
238270
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
239271
integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
240272
dependencies:
241273
"@babel/types" "^7.10.4"
242274

275+
"@babel/helper-hoist-variables@^7.14.5":
276+
version "7.14.5"
277+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"
278+
integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==
279+
dependencies:
280+
"@babel/types" "^7.14.5"
281+
243282
"@babel/helper-member-expression-to-functions@^7.10.4":
244283
version "7.10.4"
245284
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4"
@@ -385,6 +424,13 @@
385424
dependencies:
386425
"@babel/types" "^7.11.0"
387426

427+
"@babel/helper-split-export-declaration@^7.14.5":
428+
version "7.14.5"
429+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a"
430+
integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==
431+
dependencies:
432+
"@babel/types" "^7.14.5"
433+
388434
"@babel/helper-validator-identifier@^7.10.4":
389435
version "7.10.4"
390436
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
@@ -395,6 +441,11 @@
395441
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
396442
integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
397443

444+
"@babel/helper-validator-identifier@^7.14.5":
445+
version "7.14.5"
446+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8"
447+
integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==
448+
398449
"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
399450
version "7.9.5"
400451
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
@@ -451,6 +502,15 @@
451502
chalk "^2.0.0"
452503
js-tokens "^4.0.0"
453504

505+
"@babel/highlight@^7.14.5":
506+
version "7.14.5"
507+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
508+
integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
509+
dependencies:
510+
"@babel/helper-validator-identifier" "^7.14.5"
511+
chalk "^2.0.0"
512+
js-tokens "^4.0.0"
513+
454514
"@babel/highlight@^7.8.3":
455515
version "7.9.0"
456516
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
@@ -475,6 +535,11 @@
475535
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
476536
integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
477537

538+
"@babel/parser@^7.14.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.7":
539+
version "7.14.7"
540+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595"
541+
integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==
542+
478543
"@babel/plugin-proposal-async-generator-functions@^7.12.1":
479544
version "7.12.1"
480545
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e"
@@ -1207,6 +1272,15 @@
12071272
"@babel/parser" "^7.12.7"
12081273
"@babel/types" "^7.12.7"
12091274

1275+
"@babel/template@^7.14.5":
1276+
version "7.14.5"
1277+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
1278+
integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==
1279+
dependencies:
1280+
"@babel/code-frame" "^7.14.5"
1281+
"@babel/parser" "^7.14.5"
1282+
"@babel/types" "^7.14.5"
1283+
12101284
"@babel/traverse@^7.10.4":
12111285
version "7.10.4"
12121286
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818"
@@ -1252,6 +1326,21 @@
12521326
globals "^11.1.0"
12531327
lodash "^4.17.19"
12541328

1329+
"@babel/traverse@^7.14.0":
1330+
version "7.14.7"
1331+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753"
1332+
integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==
1333+
dependencies:
1334+
"@babel/code-frame" "^7.14.5"
1335+
"@babel/generator" "^7.14.5"
1336+
"@babel/helper-function-name" "^7.14.5"
1337+
"@babel/helper-hoist-variables" "^7.14.5"
1338+
"@babel/helper-split-export-declaration" "^7.14.5"
1339+
"@babel/parser" "^7.14.7"
1340+
"@babel/types" "^7.14.5"
1341+
debug "^4.1.0"
1342+
globals "^11.1.0"
1343+
12551344
"@babel/types@^7.0.0-beta.49":
12561345
version "7.11.5"
12571346
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
@@ -1288,6 +1377,14 @@
12881377
lodash "^4.17.19"
12891378
to-fast-properties "^2.0.0"
12901379

1380+
"@babel/types@^7.14.5":
1381+
version "7.14.5"
1382+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff"
1383+
integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==
1384+
dependencies:
1385+
"@babel/helper-validator-identifier" "^7.14.5"
1386+
to-fast-properties "^2.0.0"
1387+
12911388
"@babel/types@^7.4.4", "@babel/types@^7.8.3":
12921389
version "7.9.5"
12931390
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444"
@@ -2855,6 +2952,11 @@ axobject-query@^2.2.0:
28552952
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
28562953
integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
28572954

2955+
babel-jsx-utils@^1.1.0:
2956+
version "1.1.0"
2957+
resolved "https://registry.yarnpkg.com/babel-jsx-utils/-/babel-jsx-utils-1.1.0.tgz#304ce4fce0c86cbeee849551a45eb4ed1036381a"
2958+
integrity sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==
2959+
28582960
babel-loader@^8.2.2:
28592961
version "8.2.2"
28602962
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81"
@@ -2902,6 +3004,11 @@ babel-plugin-remove-graphql-queries@^3.6.0:
29023004
resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-3.6.0.tgz#20b8094ae319920fb925b1604e837e5f6a987e2f"
29033005
integrity sha512-8BEpm4gnHJhAcQ/K+yvY+/LINPljBgzncYnpLLhXa4rHa5SGsD0EIjWC0yzcP6WtMlIAqUf2cWz2itGci7FrvA==
29043006

3007+
babel-plugin-remove-graphql-queries@^3.8.0:
3008+
version "3.8.0"
3009+
resolved "https://registry.yarnpkg.com/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-3.8.0.tgz#00bbb2a8a222d13e8f025b813bb117e8c5f1a5d5"
3010+
integrity sha512-ArP55oowkMmMXxz1Q7OAsPUSt09gwRDzRtOi5cdrhhNsN7z4XOmy0n+ImYSyNxId0NL7wG2g2KT8wRdgmZ95Ig==
3011+
29053012
babel-plugin-transform-react-remove-prop-types@^0.4.24:
29063013
version "0.4.24"
29073014
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"
@@ -6077,22 +6184,27 @@ gatsby-core-utils@^2.6.0:
60776184
tmp "^0.2.1"
60786185
xdg-basedir "^4.0.0"
60796186

6187+
gatsby-core-utils@^2.8.0:
6188+
version "2.8.0"
6189+
resolved "https://registry.yarnpkg.com/gatsby-core-utils/-/gatsby-core-utils-2.8.0.tgz#e6d2e6e56609c4fcef5ba6fbf29ad863dc7bb8d2"
6190+
integrity sha512-CadvILN4ZyYMYQAp+haxSgE/0k5zIu6y2WcqVSJaQLmmWq0o49Gv4CftVKOEXOtXaN0DEr9e4wWFVBRAYaRHGA==
6191+
dependencies:
6192+
ci-info "2.0.0"
6193+
configstore "^5.0.1"
6194+
file-type "^16.2.0"
6195+
fs-extra "^8.1.0"
6196+
node-object-hash "^2.0.0"
6197+
proper-lockfile "^4.1.1"
6198+
tmp "^0.2.1"
6199+
xdg-basedir "^4.0.0"
6200+
60806201
gatsby-graphiql-explorer@^1.6.0:
60816202
version "1.6.0"
60826203
resolved "https://registry.yarnpkg.com/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-1.6.0.tgz#90e64e865bf9e5865183e9ee72737ed2e5c32c38"
60836204
integrity sha512-RNkHXELyIQKo5h2+Y92NQ/bfBm7I53MqyywRN7nXPwqwRb+ymv0/3rT6pY69WTXc1ORKrEZazmWv3JWhrVYKbw==
60846205
dependencies:
60856206
"@babel/runtime" "^7.12.5"
60866207

6087-
gatsby-image@3.6.0:
6088-
version "3.6.0"
6089-
resolved "https://registry.yarnpkg.com/gatsby-image/-/gatsby-image-3.6.0.tgz#8bca9ac0c61290c0a1acf90eb6fe93576e45368b"
6090-
integrity sha512-1Hh4VWmNBAig3WOwNKwgkmXxg2SYPbGZ11qJBzGp0igfQsBnNw1XkmfDwACfhIbxRSKSaN6gbgQgOOpQau4NtA==
6091-
dependencies:
6092-
"@babel/runtime" "^7.12.5"
6093-
object-fit-images "^3.2.4"
6094-
prop-types "^15.7.2"
6095-
60966208
gatsby-legacy-polyfills@^1.6.0:
60976209
version "1.6.0"
60986210
resolved "https://registry.yarnpkg.com/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-1.6.0.tgz#6d217afbbf015ad704d0253fa1de333e42e6a125"
@@ -6123,6 +6235,24 @@ gatsby-page-utils@^1.6.0:
61236235
lodash "^4.17.21"
61246236
micromatch "^4.0.2"
61256237

6238+
gatsby-plugin-image@^1.8.0:
6239+
version "1.8.0"
6240+
resolved "https://registry.yarnpkg.com/gatsby-plugin-image/-/gatsby-plugin-image-1.8.0.tgz#9a530cbd2c7b8219d36bb47081e01b3684fa6d41"
6241+
integrity sha512-nE7VAjhoKlAEtiBmDYo7PFsr4InyrKaHg47ou2b3PG++JiZQRkeVYDq1qeBPmbjh0DA93KMVOheIlc1NuVZvAQ==
6242+
dependencies:
6243+
"@babel/code-frame" "^7.14.0"
6244+
"@babel/parser" "^7.14.0"
6245+
"@babel/traverse" "^7.14.0"
6246+
babel-jsx-utils "^1.1.0"
6247+
babel-plugin-remove-graphql-queries "^3.8.0"
6248+
camelcase "^5.3.1"
6249+
chokidar "^3.5.1"
6250+
common-tags "^1.8.0"
6251+
fs-extra "^8.1.0"
6252+
gatsby-core-utils "^2.8.0"
6253+
objectFitPolyfill "^2.3.0"
6254+
prop-types "^15.7.2"
6255+
61266256
gatsby-plugin-page-creator@^3.6.0:
61276257
version "3.6.0"
61286258
resolved "https://registry.yarnpkg.com/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-3.6.0.tgz#2f0d6163da25bc7d7564abd5208f051cf496bb8c"
@@ -9155,11 +9285,6 @@ object-copy@^0.1.0:
91559285
define-property "^0.2.5"
91569286
kind-of "^3.0.3"
91579287

9158-
object-fit-images@^3.2.4:
9159-
version "3.2.4"
9160-
resolved "https://registry.yarnpkg.com/object-fit-images/-/object-fit-images-3.2.4.tgz#6c299d38fdf207746e5d2d46c2877f6f25d15b52"
9161-
integrity sha512-G+7LzpYfTfqUyrZlfrou/PLLLAPNC52FTy5y1CBywX+1/FkxIloOyQXBmZ3Zxa2AWO+lMF0JTuvqbr7G5e5CWg==
9162-
91639288
object-inspect@^1.7.0:
91649289
version "1.7.0"
91659290
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
@@ -9267,6 +9392,11 @@ object.values@^1.1.3:
92679392
es-abstract "^1.18.0-next.2"
92689393
has "^1.0.3"
92699394

9395+
objectFitPolyfill@^2.3.0:
9396+
version "2.3.5"
9397+
resolved "https://registry.yarnpkg.com/objectFitPolyfill/-/objectFitPolyfill-2.3.5.tgz#be8c83064aabfa4e88780f776c2013c48ce1f745"
9398+
integrity sha512-8Quz071ZmGi0QWEG4xB3Bv5Lpw6K0Uca87FLoLMKMWjB6qIq9IyBegP3b/VLNxv2WYvIMGoeUQ+c6ibUkNa8TA==
9399+
92709400
obuf@^1.0.0, obuf@^1.1.2:
92719401
version "1.1.2"
92729402
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"

0 commit comments

Comments
 (0)