From dcbbefe2fc1f5c12f46edea47260203b6a8cc1cf Mon Sep 17 00:00:00 2001 From: Stephen Niedzielski Date: Mon, 14 Jan 2019 21:16:22 +0000 Subject: [PATCH] Hygiene: report when Webpack builds complete Output a timestamp whenever a Webpack build completes. This is useful for verifying development builds generated by the `npm start` watcher are up-to-date. If you merge this patch, merge the corresponding patch to the MobileFrontend Webpack config. Change-Id: Ifeb96506475bacc2b97a24d218a28daa55dea137 --- webpack.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 276d73463..22470e7dd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -22,6 +22,8 @@ const conf = { // Apply the rule of silence: https://wikipedia.org/wiki/Unix_philosophy. stats: { all: false, + // Output a timestamp when a build completes. Useful when watching files. + builtAt: true, errors: true, warnings: true },