gatsby-matrix-theme 26.0.1 → 26.0.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
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [26.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v26.0.2...v26.0.3) (2023-07-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update core version ([69efce4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/69efce47998274d38ece5a4a54526650b37fb0f1))
|
|
7
|
+
|
|
8
|
+
## [26.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v26.0.1...v26.0.2) (2023-07-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* disabled facebook pixel ([c151254](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/c151254c8da37d432faef826fa6958b091184df9))
|
|
14
|
+
* disabled facebook pixel ([09b01db](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/09b01db920867ee17bd236e70194927609b714b0))
|
|
15
|
+
* update core version ([0b39420](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0b39420887e1c7a665b9edf4c0a98e7319d0cc2c))
|
|
16
|
+
|
|
1
17
|
## [26.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v26.0.0...v26.0.1) (2023-06-27)
|
|
2
18
|
|
|
3
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "26.0.
|
|
3
|
+
"version": "26.0.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@react-icons/all-files": "^4.1.0",
|
|
27
27
|
"gatsby": "^4.20.0",
|
|
28
|
-
"gatsby-core-theme": "24.0.
|
|
28
|
+
"gatsby-core-theme": "24.0.2",
|
|
29
29
|
"gatsby-plugin-sharp": "^4.10.2",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"gatsby-transformer-sharp": "^4.10.0",
|
|
@@ -105,7 +105,7 @@ const Main = ({ section = {}, pageContext = {}, showAuthor = true, exclOperator
|
|
|
105
105
|
{Newsletter && <Newsletter page={page} />}
|
|
106
106
|
{NewsletterSuccess && <NewsletterSuccess />}
|
|
107
107
|
|
|
108
|
-
{process.env.ENABLE_PIXEL && (
|
|
108
|
+
{process.env.ENABLE_PIXEL === 'true' && (
|
|
109
109
|
<>
|
|
110
110
|
<Script strategy="idle">
|
|
111
111
|
{`
|