We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ac230 commit ad82f9aCopy full SHA for ad82f9a
addon/ng2/models/webpack-build-test.js
@@ -3,9 +3,10 @@
3
const path = require('path');
4
const webpack = require('webpack');
5
6
-const getWebpackTestConfig = function(projectRoot, appConfig, debug=false) {
+const getWebpackTestConfig = function(projectRoot, appConfig, debug) {
7
8
const appRoot = path.resolve(projectRoot, appConfig.root);
9
+ var debug = typeof debug !== 'undefined' ? debug : false;
10
11
return {
12
devtool: 'inline-source-map',
0 commit comments