f9cc77f3 by Adam Heath

Lodash stopped exporting a concat method.

1 parent f8d0e797
...@@ -500,7 +500,7 @@ module.exports = function (grunt) { ...@@ -500,7 +500,7 @@ module.exports = function (grunt) {
500 replace: false, 500 replace: false,
501 template: template, 501 template: template,
502 templateOptions: templateOptions, 502 templateOptions: templateOptions,
503 files: _.concat([], src, specs), 503 files: [].concat(src, specs),
504 }; 504 };
505 template = require('grunt-template-jasmine-istanbul'); 505 template = require('grunt-template-jasmine-istanbul');
506 } 506 }
...@@ -510,7 +510,7 @@ module.exports = function (grunt) { ...@@ -510,7 +510,7 @@ module.exports = function (grunt) {
510 templateOptions: templateOptions, 510 templateOptions: templateOptions,
511 }, 511 },
512 all: { 512 all: {
513 src: _.concat([], 513 src: [].concat(
514 src, 514 src,
515 specs 515 specs
516 ), 516 ),
......