Skip to content

Commit

Permalink
fix(karma-webpack): Regression in multi-compiler mode (codymikol#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-g committed Jan 22, 2019
1 parent 2f47250 commit e24a5ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -43,6 +43,7 @@
"dependencies": {
"async": "^2.0.0",
"loader-utils": "^1.1.0",
"lodash.clone": "^4.5.0",
"source-map": "^0.5.6",
"webpack-dev-middleware": "^3.2.0"
},
Expand Down
4 changes: 1 addition & 3 deletions src/karma-webpack.js
Expand Up @@ -7,9 +7,7 @@
const os = require('os');
const path = require('path');

function clone(obj) {
return Object.assign({}, obj);
}
const clone = require('lodash.clone')
const async = require('async');
const webpack = require('webpack');
const WebpackDevMiddleware = require('webpack-dev-middleware');
Expand Down

0 comments on commit e24a5ad

Please sign in to comment.