gatsby-core-theme 33.1.2 → 33.1.3
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 +7 -0
- package/package.json +1 -1
- package/src/helpers/processor/index.mjs +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [33.1.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.2...v33.1.3) (2024-06-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disabled reading time ([9029b83](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9029b83354c9d752de3bfcc6911ab24897d4477f))
|
|
7
|
+
|
|
1
8
|
## [33.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v33.1.1...v33.1.2) (2024-06-25)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -345,9 +345,9 @@ export default {
|
|
|
345
345
|
}
|
|
346
346
|
|
|
347
347
|
// add reading time for each page
|
|
348
|
-
transformedPages[market][pageType][index].reading_time = getReadingTime(
|
|
349
|
-
|
|
350
|
-
);
|
|
348
|
+
// transformedPages[market][pageType][index].reading_time = getReadingTime(
|
|
349
|
+
// transformedPages[market][pageType][index]?.sections
|
|
350
|
+
// );
|
|
351
351
|
|
|
352
352
|
// add breadcrumbs array to page
|
|
353
353
|
const pageBreadcrumbIds = transformedPages[market][pageType][index].breadcrumb_ids;
|