@hyperframes/lint 0.8.20 → 0.8.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -4827,7 +4827,7 @@ var PROBE_TIMEOUT_MS = 4e3;
4827
4827
  var PROBE_CONCURRENCY = 8;
4828
4828
  function execFileAsync(file, args) {
4829
4829
  return new Promise((resolvePromise, reject) => {
4830
- execFile(file, args, { timeout: PROBE_TIMEOUT_MS }, (error, stdout) => {
4830
+ execFile(file, args, { timeout: PROBE_TIMEOUT_MS, windowsHide: true }, (error, stdout) => {
4831
4831
  if (error) reject(error);
4832
4832
  else resolvePromise(stdout.toString());
4833
4833
  });