gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-wallet-webex] branch master updated: do not swallow


From: gnunet
Subject: [GNUnet-SVN] [taler-wallet-webex] branch master updated: do not swallow errors
Date: Thu, 20 Jul 2017 04:16:57 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-webex.

The following commit(s) were added to refs/heads/master by this push:
     new 1f8c3af5 do not swallow errors
1f8c3af5 is described below

commit 1f8c3af5f9143cecaf977f9396c3c8ee7f909735
Author: Florian Dold <address@hidden>
AuthorDate: Thu Jul 20 04:16:50 2017 +0200

    do not swallow errors
---
 gulpfile.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gulpfile.js b/gulpfile.js
index cff034b5..ae3cdee3 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -166,9 +166,14 @@ gulp.task("dist-prod", ["compile-prod"], function () {
 gulp.task("compile-prod", function (callback) {
   let config = require("./webpack.config.js")({prod: true});
   webpack(config, function(err, stats) {
-    if(err) {
+    if (err) {
       throw new gutil.PluginError("webpack", err);
     }
+    if (stats.hasErrors() || stats.hasWarnins) {
+      gutil.log("[webpack]", stats.toString({
+        colors: true,
+      }));
+    }
     callback();
   });
 });

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]