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
This commit is contained in:
Stephen Niedzielski 2019-01-14 21:16:22 +00:00
parent 170ab5422a
commit dcbbefe2fc

View file

@ -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
},