Skip to content

Commit

Permalink
Ensure compatibility with the latest remap-istanbul version
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Dec 20, 2016
1 parent 6aedb8f commit ea7df49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* globals WeakMap, Promise */

var istanbul = require('istanbul');
var remap = require('remap-istanbul/lib/remap').default;
var writeReport = require('remap-istanbul/lib/writeReport').default;
var remap = require('remap-istanbul/lib/remap');
var writeReport = require('remap-istanbul/lib/writeReport');
var assign = require('object.assign/polyfill')();

var KarmaRemapIstanbul = function (baseReporterDecorator, logger, config) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"istanbul": "^0.4.3",
"object.assign": "^4.0.4",
"remap-istanbul": "^0.8.2"
"remap-istanbul": "^0.8.3"
},
"peerDependencies": {
"karma": ">=0.9"
Expand Down

0 comments on commit ea7df49

Please sign in to comment.