From 9a5d97aedd3e474602eec340b95a23553f689dec Mon Sep 17 00:00:00 2001 From: Sebastien Date: Sun, 13 Mar 2016 23:58:37 +0100 Subject: [PATCH] Minor style changes --- webpack.config.js | 10 ++++++++-- webpack.prod.config.js | 5 ++++- webpack.test.config.js | 7 ++++++- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 2439d316f0..fdba75759d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -33,10 +33,16 @@ module.exports = { metadata: metadata, // reference: https://webpack.github.io/docs/configuration.html#devtool - devtool: "cheap-module-eval-source-map", + devtool: "cheap-module-eval-source-map", + //cache: true, + debug: true, - stats: {colors: true, reasons: true}, + + stats: { + colors: true, + reasons: true + }, // our angular app entry: { diff --git a/webpack.prod.config.js b/webpack.prod.config.js index fe5b15e41e..0232859879 100644 --- a/webpack.prod.config.js +++ b/webpack.prod.config.js @@ -40,7 +40,10 @@ module.exports = { // no debug in production debug: false, - stats: { colors: true, reasons: true }, + stats: { + colors: true, + reasons: true + }, entry: { "polyfills": helpers.root("src/polyfills.ts"), diff --git a/webpack.test.config.js b/webpack.test.config.js index 16f90ceddd..cb23de17ea 100644 --- a/webpack.test.config.js +++ b/webpack.test.config.js @@ -14,8 +14,13 @@ let ENV = process.env.ENV = process.env.NODE_ENV = "test"; */ module.exports = { devtool: "inline-source-map", + debug: true, - stats: { colors: true, reasons: true }, + + stats: { + colors: true, + reasons: true + }, resolve: { cache: false,