]> source.dussan.org Git - sonarqube.git/commitdiff
display webpack build duration
authorStas Vilchik <vilchiks@gmail.com>
Fri, 4 Nov 2016 08:09:42 +0000 (09:09 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Fri, 4 Nov 2016 08:09:51 +0000 (09:09 +0100)
server/sonar-web/scripts/start.js

index 90cd204e9d1eee903d7b43f7b5f98c0ff99f030d..67b239a47397a987576f8b74941c26f0d37fb90c 100644 (file)
@@ -80,9 +80,12 @@ function setupCompiler (host, port, protocol) {
     // We have switched off the default Webpack output in WebpackDevServer
     // options so we are going to "massage" the warnings and errors and present
     // them in a readable focused way.
-    var messages = formatWebpackMessages(stats.toJson({}, true));
+    var jsonStats = stats.toJson({}, true);
+    var messages = formatWebpackMessages(jsonStats);
+    var seconds = jsonStats.time / 1000;
     if (!messages.errors.length && !messages.warnings.length) {
       console.log(chalk.green('Compiled successfully!'));
+      console.log('Duration: ' + seconds.toFixed(2) + 's');
       console.log();
       console.log('The app is running at:');
       console.log();