mod-build 3.6.60-beta.3 → 3.6.60-beta.5
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.
|
@@ -256,7 +256,11 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
256
256
|
|
|
257
257
|
return Promise.all(getAllResources)
|
|
258
258
|
.then(() => {
|
|
259
|
-
console.log(
|
|
259
|
+
console.log(`>> FILENAMES object = ${JSON.stringify(fileNames)}`);
|
|
260
|
+
return gulp.src(siteSettings.srcFolder + '/shared-components/foot-assets/foot-assets.html')
|
|
261
|
+
.on('data', function (file) {
|
|
262
|
+
console.log(`>> FOOT ASSETS HTML = ${file.contents.toString()}`);
|
|
263
|
+
});
|
|
260
264
|
})
|
|
261
265
|
}());
|
|
262
266
|
};
|