f9cc77f3 by Adam Heath

Lodash stopped exporting a concat method.

1 parent f8d0e797
......@@ -500,7 +500,7 @@ module.exports = function (grunt) {
replace: false,
template: template,
templateOptions: templateOptions,
files: _.concat([], src, specs),
files: [].concat(src, specs),
};
template = require('grunt-template-jasmine-istanbul');
}
......@@ -510,7 +510,7 @@ module.exports = function (grunt) {
templateOptions: templateOptions,
},
all: {
src: _.concat([],
src: [].concat(
src,
specs
),
......