Skip to content

Commit

Permalink
Merge branch 'master' into ora
Browse files Browse the repository at this point in the history
  • Loading branch information
pahen authored Oct 26, 2020
2 parents 0ab9489 + b74eb74 commit 81a0a62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

const os = require('os');
const path = require('path');
const pify = require('pify');
const {promisify} = require('util');
const commondir = require('commondir');
const walk = require('walkdir');
const dependencyTree = require('dependency-tree');
const log = require('./log');

const stat = pify(require('fs').stat);
const stat = promisify(require('fs').stat);

/**
* Check if running on Windows.
Expand Down

0 comments on commit 81a0a62

Please sign in to comment.