mod-build 3.6.66 → 3.6.67
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 +4 -0
- package/gulp-tasks/tasks.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.67
|
|
4
|
+
|
|
5
|
+
- Adjusting the `grab-theme-json` task conditional to also check for `opts.siteData.page` to exist as well as the `themeFile` before running the task!
|
|
6
|
+
|
|
3
7
|
## 3.6.66
|
|
4
8
|
|
|
5
9
|
- Adjusting the `mergeDefaultFormFieldConfig()` for the accessible configuration so it merges the values correctly.
|
package/gulp-tasks/tasks.js
CHANGED
|
@@ -402,7 +402,7 @@ module.exports = function() {
|
|
|
402
402
|
opts.gulpTasksFolderPath = '.';
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
if (opts.siteData.page.themeFile) {
|
|
405
|
+
if (opts.siteData.page && opts.siteData.page.themeFile) {
|
|
406
406
|
return require(opts.gulpTasksFolderPath + '/grab-theme-json')(opts.gulp, opts.gulpPlugins, opts.gulpSettings, opts.siteData);
|
|
407
407
|
}
|
|
408
408
|
}
|