mod-build 3.6.36-beta.3 → 3.6.36-beta.4
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.
|
@@ -104,9 +104,6 @@ function getResource(url, config = {}, fn, fnArray) {
|
|
|
104
104
|
algorithm: 'md5',
|
|
105
105
|
template: file.replace(/^([^.]*)\.(.*)$/, '$1-<%= hash %>.$2')
|
|
106
106
|
}))
|
|
107
|
-
.on('data', function(chunk) {
|
|
108
|
-
console.log(chunk);
|
|
109
|
-
})
|
|
110
107
|
.pipe(tap(function(file, t) {
|
|
111
108
|
fileNames[config.fileName] = path.basename(file.path);
|
|
112
109
|
}))
|
|
@@ -263,9 +260,7 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
263
260
|
});
|
|
264
261
|
}
|
|
265
262
|
|
|
266
|
-
return Promise.all(getAllResources)
|
|
267
|
-
console.log('ALL DONE!!!');
|
|
268
|
-
})
|
|
263
|
+
return Promise.all(getAllResources);
|
|
269
264
|
}());
|
|
270
265
|
};
|
|
271
266
|
};
|