This is an automated email from the ASF dual-hosted git repository.

eallen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new 0310f91  DISPATCH-1261 Add new paths to vendor files to fix CentOS7 
builds
0310f91 is described below

commit 0310f91fe587d1a7aea266ed0168918dddbdbed8
Author: Ernest Allen <eal...@redhat.com>
AuthorDate: Fri Feb 1 13:34:22 2019 -0500

    DISPATCH-1261 Add new paths to vendor files to fix CentOS7 builds
---
 console/stand-alone/gulpfile.js   | 6 +++++-
 console/stand-alone/vendor-js.txt | 3 +++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/console/stand-alone/gulpfile.js b/console/stand-alone/gulpfile.js
index d6a3ca3..6ef121a 100644
--- a/console/stand-alone/gulpfile.js
+++ b/console/stand-alone/gulpfile.js
@@ -130,7 +130,11 @@ var vendor_scripts = function () {
   var vendor_files = vendor_lines.filter(function (line) {
     return (!line.startsWith('-') && line.length > 0);
   });
-  return gulp.src(vendor_files)
+  return gulp.src(vendor_files, { allowEmpty: true })
+    .on('error', function (src) {
+      console.error(src.message);
+      this.emit('end');
+    })
     .pipe(maps.init())
     .pipe(uglify())
     .pipe(concat('vendor.min.js'))
diff --git a/console/stand-alone/vendor-js.txt 
b/console/stand-alone/vendor-js.txt
index 935d9a4..ea6760b 100644
--- a/console/stand-alone/vendor-js.txt
+++ b/console/stand-alone/vendor-js.txt
@@ -38,8 +38,11 @@ node_modules/d3-geo/dist/d3-geo.js
 node_modules/d3-geo-projection/dist/d3-geo-projection.js
 node_modules/d3-queue/build/d3-queue.min.js
 node_modules/d3-time/build/d3-time.min.js
+node_modules/d3-time/dist/d3-time.min.js
 node_modules/d3-time-format/build/d3-time-format.min.js
+node_modules/d3-time-format/dist/d3-time-format.min.js
 node_modules/d3-path/build/d3-path.min.js
+node_modules/d3-path/dist/d3-path.min.js
 node_modules/topojson-client/dist/topojson-client.js
 node_modules/c3/c3.min.js
 node_modules/notifyjs-browser/dist/notify.js


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to