File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module.exports = function makeWebpackConfig() {
29
29
* Should be an empty object if it's generating a test build
30
30
* Karma will set this when it's a test build
31
31
*/
32
- config . entry = isTest ? { } : {
32
+ config . entry = isTest ? void 0 : {
33
33
app : './src/app/app.js'
34
34
} ;
35
35
@@ -102,7 +102,7 @@ module.exports = function makeWebpackConfig() {
102
102
// Reference: https://github.com/webpack/style-loader
103
103
// Use style-loader in development.
104
104
105
- loader : isTest ? 'null' : ExtractTextPlugin . extract ( {
105
+ loader : isTest ? 'null-loader ' : ExtractTextPlugin . extract ( {
106
106
fallbackLoader : 'style-loader' ,
107
107
loader : [
108
108
{ loader : 'css-loader' , query : { sourceMap : true } } ,
@@ -139,7 +139,7 @@ module.exports = function makeWebpackConfig() {
139
139
/ n o d e _ m o d u l e s / ,
140
140
/ \. s p e c \. j s $ /
141
141
] ,
142
- loader : 'istanbul-instrumenter' ,
142
+ loader : 'istanbul-instrumenter-loader ' ,
143
143
query : {
144
144
esModules : true
145
145
}
You can’t perform that action at this time.
0 commit comments