gatsby-core-theme 21.0.8 → 21.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/gatsby-node.esm.js +2 -0
- package/package.json +1 -1
- package/src/components/pages/body/index.js +1 -0
- package/storybook/.ci.yml +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [21.0.9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v21.0.8...v21.0.9) (2023-05-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added all markets to page context for multiple markets ([7c1b7d4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7c1b7d43a00566abff583d0866b8c85c3db2eda4))
|
|
7
|
+
* pipelines ([95037e9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/95037e991dadb97187376860b40c01b75a11e1dc))
|
|
8
|
+
* pipelines ([d42b627](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d42b6270d12e7fc8a90ca3b3c76c8c1504c4fca1))
|
|
9
|
+
|
|
1
10
|
## [21.0.8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v21.0.7...v21.0.8) (2023-05-10)
|
|
2
11
|
|
|
3
12
|
|
package/gatsby-node.esm.js
CHANGED
|
@@ -220,6 +220,7 @@ exports.createPages = async ({ actions: { createPage } }, themeOptions) => {
|
|
|
220
220
|
processed.pages[siteMarket][pageType].forEach((page) => {
|
|
221
221
|
marketSections = processed.market_sections[siteMarket];
|
|
222
222
|
prefilledModules = processed.prefilled_market_modules[siteMarket];
|
|
223
|
+
const allMarkets = processed.site_markets;
|
|
223
224
|
const processedPage = page;
|
|
224
225
|
processedPage.preconnect_links = preconnectLinks;
|
|
225
226
|
|
|
@@ -250,6 +251,7 @@ exports.createPages = async ({ actions: { createPage } }, themeOptions) => {
|
|
|
250
251
|
const autogenerated = template && template.autogenerated_content;
|
|
251
252
|
const contextData = {
|
|
252
253
|
page,
|
|
254
|
+
allMarkets,
|
|
253
255
|
marketSections,
|
|
254
256
|
prefilledModules,
|
|
255
257
|
siteInfo,
|
package/package.json
CHANGED
package/storybook/.ci.yml
CHANGED
|
@@ -31,7 +31,6 @@ Storybook Deploy:
|
|
|
31
31
|
- gatsby-runner-dev-1
|
|
32
32
|
script:
|
|
33
33
|
- mkdir -p ~/.ssh
|
|
34
|
-
- ssh-keyscan -H storybook >> ~/.ssh/known_hosts
|
|
35
34
|
- echo "$FLOYD_ROOT_KEY" > ~/.ssh/id_rsa
|
|
36
35
|
- chmod 600 ~/.ssh/id_rsa
|
|
37
36
|
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|