mod-build 3.6.60-beta.5 → 3.6.60
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
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.60
|
|
4
|
+
|
|
5
|
+
- Adding consoles allllll throughout the `grab-shared-scripts` task. It is still breaking down somewhere; and the first step to trying to force-fail our builds is figure out where the issue is
|
|
6
|
+
|
|
3
7
|
## 3.6.59
|
|
4
8
|
|
|
5
9
|
- adding `srcset` to the `add-path-subdirectories` gulp task to update relative paths in `<picture>` tags
|
|
@@ -14,6 +18,7 @@
|
|
|
14
18
|
- adding `!window.Modalytics.privacyPreferencesDetected` conditional to check privacy settings to not load Heap for modernize.com
|
|
15
19
|
|
|
16
20
|
## 3.6.55
|
|
21
|
+
|
|
17
22
|
- Added conditional to check if `siteData` is empty — so our `fetchTcpaFromSitegenie()` and `getDefaultFormFieldConfig()` functions won't try to run on modify.modernize.com
|
|
18
23
|
|
|
19
24
|
## 3.6.54
|
|
@@ -253,14 +253,13 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
253
253
|
});
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
-
|
|
257
256
|
return Promise.all(getAllResources)
|
|
258
257
|
.then(() => {
|
|
259
258
|
console.log(`>> FILENAMES object = ${JSON.stringify(fileNames)}`);
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
259
|
+
return gulp.src(siteSettings.srcFolder + '/shared-components/foot-assets/foot-assets.html')
|
|
260
|
+
.on('data', function (file) {
|
|
261
|
+
console.log(`>> FOOT ASSETS HTML = ${file.contents.toString()}`);
|
|
262
|
+
});
|
|
264
263
|
})
|
|
265
264
|
}());
|
|
266
265
|
};
|