We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47f809e commit 62e5c9dCopy full SHA for 62e5c9d
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "grunt-concurrent",
3
- "version": "2.2.1",
+ "version": "2.3.0",
4
"description": "Run grunt tasks concurrently",
5
"keywords": [
6
"gruntplugin",
tasks/concurrent.js
@@ -4,6 +4,7 @@ var padStream = require('pad-stream');
var async = require('async');
var arrify = require('arrify');
var indentString = require('indent-string');
7
+
8
var cpCache = [];
9
10
module.exports = function (grunt) {
@@ -73,5 +74,5 @@ function cleanup() {
73
74
process.on('exit', cleanup);
75
process.on('SIGINT', function () {
76
cleanup();
- process.exit();
77
+ process.exit(); // eslint-disable-line xo/no-process-exit
78
});
0 commit comments