From 4d9b7fe3e4bbbf4a089242fbfcb20e80a5de102b Mon Sep 17 00:00:00 2001 From: charlesh88 Date: Wed, 8 Aug 2018 18:06:11 -0700 Subject: [PATCH] Markup / scss refactor WIP Fixes #2140 - Add timestamp to webpack build --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index de0a263af2..bf8e65c0c2 100644 --- a/app.js +++ b/app.js @@ -43,6 +43,7 @@ app.use('/proxyUrl', function proxyRequest(req, res, next) { const webpack = require('webpack'); const webpackConfig = require('./webpack.config.js'); webpackConfig.plugins.push(new webpack.HotModuleReplacementPlugin()); +webpackConfig.plugins.push(function() { this.plugin('watch-run', function(watching, callback) { console.log('Begin compile at ' + new Date()); callback(); }) }); webpackConfig.entry.openmct = [ 'webpack-hot-middleware/client',