Skip to content

Commit

Permalink
Add util to the dependencies for impagination
Browse files Browse the repository at this point in the history
binary-search-tree requires `util`, but does not enumerate it as a
dependency. This is a known issue with it
louischatriot/node-binary-search-tree#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.
  • Loading branch information
cowboyd committed Oct 30, 2017
1 parent 8a34e94 commit 4d8fa32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/node_modules
/lib
/yarn.lock
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 4d8fa32

Please sign in to comment.