Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
Minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed Mar 13, 2016
1 parent 99539e4 commit 9a5d97a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
10 changes: 8 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
5 changes: 4 additions & 1 deletion webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
7 changes: 6 additions & 1 deletion webpack.test.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9a5d97a

Please sign in to comment.