From 4d8fa320b5ab97eb471bc8f0179bf558f08c8bf8 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Mon, 30 Oct 2017 13:48:41 -0500 Subject: [PATCH] Add `util` to the dependencies for impagination binary-search-tree requires `util`, but does not enumerate it as a dependency. This is a known issue with it https://github.com/louischatriot/node-binary-search-tree/issues/14 This adds `util` as a primary dependency so that this require will not fail. While we're fixing up meta-information, this adds build time artifacts `/lib` and `/yarn.lock` to the ignore list. --- .gitignore | 2 ++ package.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 07e6e47..8c18a31 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /node_modules +/lib +/yarn.lock diff --git a/package.json b/package.json index 3179760..e474ae2 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ }, "dependencies": { "babel-runtime": "^5.8.25", - "binary-search-tree": "^0.2.6" + "binary-search-tree": "^0.2.6", + "util": "^0.10.3" } }