diff --git a/lib/core/ResolveCache.js b/lib/core/ResolveCache.js index cf80edfb..ebae2b90 100644 --- a/lib/core/ResolveCache.js +++ b/lib/core/ResolveCache.js @@ -250,7 +250,6 @@ ResolveCache.clearRuntimeCache = function () { // ------------------------ - ResolveCache.prototype._getSourceId = function (source) { return crypto.createHash('md5').update(source).digest('hex'); }; diff --git a/lib/renderers/StandardRenderer.js b/lib/renderers/StandardRenderer.js index 754e01a4..33686985 100644 --- a/lib/renderers/StandardRenderer.js +++ b/lib/renderers/StandardRenderer.js @@ -131,7 +131,7 @@ StandardRenderer.prototype._update = function (packages) { StandardRenderer.prototype._list = function (tree) { var cliTree = this._tree2archy(tree); - this._write(process.stdout, '\n' + archy(cliTree)); + this._write(process.stdout, archy(cliTree)); }; StandardRenderer.prototype._cacheList = function (entries) {