@griddo/cx 11.10.2 → 11.10.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/cx",
|
|
3
3
|
"description": "Griddo SSG based on Gatsby",
|
|
4
|
-
"version": "11.10.
|
|
4
|
+
"version": "11.10.3",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Hisco <francis.vega@griddo.io>"
|
|
7
7
|
],
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"publishConfig": {
|
|
94
94
|
"access": "public"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "8c503d39cd0b06c1e3008f2da2be0e544969170b"
|
|
97
97
|
}
|
package/src/gatsby-node-utils.ts
CHANGED
|
@@ -98,7 +98,7 @@ async function* getBuildPagesFromStore<PageType extends GriddoPageObject>(args?:
|
|
|
98
98
|
});
|
|
99
99
|
const pagesDirPath = basePath || path.join(__root, "store");
|
|
100
100
|
|
|
101
|
-
if (!pathExists(pagesDirPath)) {
|
|
101
|
+
if (!(await pathExists(pagesDirPath))) {
|
|
102
102
|
throwError(ReadFromStoreError, `Pages directory not found: ${pagesDirPath}`);
|
|
103
103
|
}
|
|
104
104
|
|