Skip to content

Commit

Permalink
feat(core): Display resolved package version in output.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Schmidt committed Mar 5, 2018
1 parent a0209ef commit c6bf25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const resolvePackage = function(rootProjectPath, alreadyResolved, name, depth, o
while (!projectDir.endsWith(name)) {
projectDir = path.resolve(projectDir, '../');
}
console.log(indent + 'Resolved ' + pack.name + ' to ' + projectDir);
console.log(indent + 'Resolved ' + pack.name + '@' + pack.version + ' to ' + projectDir);
if (!rootProjectPath) {
rootProjectPath = projectDir;
}
Expand Down

0 comments on commit c6bf25d

Please sign in to comment.