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(`FILENAMES object = ${JSON.stringify(fileNames)}`);
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.60-beta.3",
3
+ "version": "3.6.60-beta.5",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",