@griddo/cx 1.68.6 → 1.68.7

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/gatsby-node.js CHANGED
@@ -94,7 +94,6 @@ exports.createPages = async ({ actions }) => {
94
94
  headers,
95
95
  footers,
96
96
  socials,
97
- // sitePages, // CX-19678
98
97
  } = await sites.getSiteData(siteID);
99
98
 
100
99
  site.languages = siteLangs;
@@ -136,7 +135,6 @@ exports.createPages = async ({ actions }) => {
136
135
  componentsVersion,
137
136
  showBasicMetaRobots,
138
137
  BUILD_MODE,
139
- //sitePages, // CX-19678
140
138
  siteScript
141
139
  };
142
140
 
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.68.6",
4
+ "version": "1.68.7",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -64,7 +64,7 @@
64
64
  "react-helmet": "^6.0.0"
65
65
  },
66
66
  "devDependencies": {
67
- "@griddo/eslint-config-back": "^1.68.6",
67
+ "@griddo/eslint-config-back": "^1.68.7",
68
68
  "eslint": "^7.5.0",
69
69
  "eslint-plugin-node": "^11.1.0",
70
70
  "eslint-plugin-react": "7.14.3",
@@ -96,5 +96,5 @@
96
96
  "publishConfig": {
97
97
  "access": "public"
98
98
  },
99
- "gitHead": "48d324f4f214cc47e41ffe6d6a192289d5303c17"
99
+ "gitHead": "55f69fb3548a10253b1b20a7bab82e41b3c2d347"
100
100
  }
@@ -44,7 +44,9 @@ const updateDist = async () => {
44
44
 
45
45
  const files = fs
46
46
  .readdirSync(src)
47
- .filter(fn => fn.endsWith('.js') || fn.endsWith('.json'));
47
+ .filter(
48
+ fn => fn.endsWith('.js') || fn.endsWith('.json') || fn.endsWith('.css')
49
+ );
48
50
 
49
51
  const assetsDest = './assets';
50
52
  const pageDataSrc = `${src}/page-data`;