Skip to content

Commit bacb8bf

Browse files
committed
Drop dependency on sync-exec
1 parent 1f3aef7 commit bacb8bf

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"pretty-data": "^0.40.0",
4141
"shell-escape": "^0.2.0",
4242
"slash": "^2.0.0",
43-
"sync-exec": "~0.6.2",
4443
"vinyl": "^2.2.0",
4544
"vinyl-fs": "^3.0.3",
4645
"xml2js": "^0.4.16"

src/command.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use strict';
22

3-
var execSync = require('sync-exec');
43
var Promise = require('bluebird');
54
var checkstyle = require('./checkstyle');
65
var dargs = require('dargs');
@@ -50,7 +49,7 @@ function execCommand(command, options) {
5049
};
5150

5251
if (options.sync || options.endless) {
53-
var commandResult = execSync(command);
52+
var commandResult = child_process.execSync(command);
5453
var error = null;
5554

5655
if (commandResult.status) {

0 commit comments

Comments
 (0)