mod-build 3.6.66-beta.2 → 3.6.66
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/templates.js +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.66
|
|
4
|
+
|
|
5
|
+
- Adjusting the `mergeDefaultFormFieldConfig()` for the accessible configuration so it merges the values correctly.
|
|
6
|
+
|
|
3
7
|
## 3.6.65
|
|
4
8
|
|
|
5
9
|
- Removing the `'brand'` task (was working off `mod-site` dependencies which we are no longer using). Also removed the `useCDN` conditional for a few tasks (that I believe was added due to just copying/pasting).
|
package/gulp-tasks/templates.js
CHANGED
|
@@ -173,7 +173,6 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
173
173
|
return steps;
|
|
174
174
|
}
|
|
175
175
|
if (templatesData.siteData && templatesData.siteData.useAccessibleConfig) {
|
|
176
|
-
console.log('MERGING ACCESSIBLE CONFIG');
|
|
177
176
|
steps.items.forEach(item => {
|
|
178
177
|
if (item.stepContent.fields) {
|
|
179
178
|
item.stepContent.fields = item.stepContent.fields.map(field => {
|