@griddo/cx 1.75.35 → 1.75.36

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/cx",
3
3
  "description": "Griddo SSG based on Gatsby",
4
- "version": "1.75.35",
4
+ "version": "1.75.36",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -65,7 +65,7 @@
65
65
  "react-helmet": "^6.0.0"
66
66
  },
67
67
  "devDependencies": {
68
- "@griddo/eslint-config-back": "^1.75.35",
68
+ "@griddo/eslint-config-back": "^1.75.36",
69
69
  "eslint": "^7.5.0",
70
70
  "eslint-plugin-node": "^11.1.0",
71
71
  "eslint-plugin-react": "7.14.3",
@@ -97,5 +97,5 @@
97
97
  "publishConfig": {
98
98
  "access": "public"
99
99
  },
100
- "gitHead": "b07f3c7a091191e2bcc82ff31bb034456d68f4d0"
100
+ "gitHead": "2d221923450bac0e467a2f6b3c30db8b29a9f5f0"
101
101
  }
@@ -101,6 +101,8 @@ export const Head = data => {
101
101
  pageMetadata?.index === 'index' &&
102
102
  cleanPageLanguages.length > 1;
103
103
 
104
+ const currentTime = new Date().toString();
105
+
104
106
  return (
105
107
  <>
106
108
  {!!pageMetadata?.title && <title>{pageMetadata?.title}</title>}
@@ -177,7 +179,7 @@ export const Head = data => {
177
179
  {!siteOptions?.avoidDebugMetas && (
178
180
  <meta
179
181
  property="debug"
180
- content={`Components v${componentsVersion} by Griddo v${griddoVersion} @ ${new Date()}`}
182
+ content={`Components v${componentsVersion} by Griddo v${griddoVersion} @ ${currentTime}}`}
181
183
  />
182
184
  )}
183
185