Skip to content

Commit 62e5c9d

Browse files
committed
2.3.0
1 parent 47f809e commit 62e5c9d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grunt-concurrent",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "Run grunt tasks concurrently",
55
"keywords": [
66
"gruntplugin",

tasks/concurrent.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ var padStream = require('pad-stream');
44
var async = require('async');
55
var arrify = require('arrify');
66
var indentString = require('indent-string');
7+
78
var cpCache = [];
89

910
module.exports = function (grunt) {
@@ -73,5 +74,5 @@ function cleanup() {
7374
process.on('exit', cleanup);
7475
process.on('SIGINT', function () {
7576
cleanup();
76-
process.exit();
77+
process.exit(); // eslint-disable-line xo/no-process-exit
7778
});

0 commit comments

Comments
 (0)