gatsby-core-theme 44.24.1 → 44.24.2
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/generators.mjs +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [44.24.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.24.1...v44.24.2) (2026-05-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix preview ([4884d10](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/4884d10f47c98c99cfdf100581ce25e76a62bf0b))
|
|
7
|
+
|
|
1
8
|
## [44.24.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.24.0...v44.24.1) (2026-05-15)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -56,6 +56,7 @@ export function generatePlaceholderString(
|
|
|
56
56
|
const month = String(date.getMonth() + 1).padStart(2, "0");
|
|
57
57
|
const year = date.getFullYear();
|
|
58
58
|
const regex = generatorsConstant.generatorsPlaceholderRegex;
|
|
59
|
+
if (string == null) return string;
|
|
59
60
|
string = string.replace(/=/g, "=");
|
|
60
61
|
|
|
61
62
|
return string?.replace(regex, (match) => {
|