Skip to content

Commit 694b209

Browse files
committed
Update dependencies
1 parent 416879d commit 694b209

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
var native = require('bindings')('windows_process_tree');
6+
let path = require('path');
7+
8+
let native = require(path.join('..', 'build', 'Release', 'windows_process_tree.node'));
79

810
function buildProcessTree(processList, rootPid) {
911
let rootIndex = processList.findIndex(v => v.pid === rootPid);

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"author": "Microsoft Corporation",
1010
"license": "MIT",
1111
"dependencies": {
12-
"bindings": "^1.3.0",
1312
"nan": "^2.6.2"
1413
},
1514
"devDependencies": {

0 commit comments

Comments
 (0)