Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Tweaky.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceejbot committed Apr 23, 2016
1 parent 017edb3 commit 34ef71e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions commands/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@ function view(argv)
var version = pkg.versions[latest];

console.log('');
console.log(chalk.blue(pkg.name));
console.log('latest v' + chalk.blue(latest) +
' published ' +
moment(pkg.time[latest]).format('lll'));
console.log(chalk.blue(pkg.name) + '@' + chalk.blue(latest));
console.log('published ' + moment(pkg.time[latest]).format('lll'));
console.log('by ' + chalk.blue(version._npmUser.name) + ' <' + version._npmUser.email + '>');
console.log('');
console.log(pkg.description);
Expand All @@ -51,7 +49,6 @@ function view(argv)
console.log('tarball: ' + chalk.yellow(version.dist.tarball));
console.log('shasum: ' + chalk.yellow(version.dist.shasum));


console.log('');
console.log('dependencies:');
var deps = [];
Expand Down

0 comments on commit 34ef71e

Please sign in to comment.