Skip to content

Commit eef5201

Browse files
committed
update istanbul to 0.4.5
use src pattern instead of the task's resolved files (this.fileSrc) that doesn't work with istanbul 0.4.5
1 parent 75e7c2b commit eef5201

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
"dependencies": {
4040
"deepmerge": "^0.2.10",
41-
"istanbul": "^0.4.4",
41+
"istanbul": "^0.4.5",
4242
"jasmine": "^2.4.1",
4343
"jasmine-reporters": "^2.2.0",
4444
"jasmine-spec-reporter": "^2.5.0"

tasks/jasmine-node-task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ module.exports = function jasmineNodeTask(grunt) {
312312
options.coverage.report = options.coverage.report || ['lcov', 'text-summary'];
313313
}
314314

315-
fileSrc = this.filesSrc || fileSrc;
315+
fileSrc = this.data.src || fileSrc;
316316

317317
// Tell grunt this task is asynchronous.
318318
done = this.async();

0 commit comments

Comments
 (0)