mod-build 3.6.60-beta.4 → 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.
|
@@ -5,7 +5,6 @@ var hash = require('gulp-hash');
|
|
|
5
5
|
var tap = require('gulp-tap');
|
|
6
6
|
var path = require('path');
|
|
7
7
|
var buffer = require('gulp-buffer');
|
|
8
|
-
var fetch = require('node-fetch');
|
|
9
8
|
|
|
10
9
|
const fileNames = {
|
|
11
10
|
modAlyticsFileName: '',
|
|
@@ -257,8 +256,12 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
257
256
|
|
|
258
257
|
return Promise.all(getAllResources)
|
|
259
258
|
.then(() => {
|
|
260
|
-
console.log(`>>FILENAMES object = ${JSON.stringify(fileNames)}`);
|
|
261
|
-
|
|
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
|
+
});
|
|
264
|
+
})
|
|
262
265
|
}());
|
|
263
266
|
};
|
|
264
267
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mod-build",
|
|
3
|
-
"version": "3.6.60-beta.
|
|
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",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"jquery": "^3.2.1",
|
|
57
57
|
"lodash": "^4.17.15",
|
|
58
58
|
"lodash.merge": "^4.6.2",
|
|
59
|
-
"node-fetch": "^3.3.2",
|
|
60
59
|
"nouislider": "^10.1.0",
|
|
61
60
|
"path": "^0.12.7",
|
|
62
61
|
"request": "^2.88.0",
|