Skip to content

Commit

Permalink
better messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ellman committed Sep 18, 2014
1 parent ec590dc commit 881dd45
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,11 @@ exports.publish = function() {
shell.exec('git remote add meanio ' + data.repo, function(code) {
if (!code) {
console.log(chalk.yellow('Remote added'));
console.log(chalk.green('Package Created: ' + data.name));
console.log(chalk.green('You can now push your code to update latest/master '));
console.log(chalk.green(' `git push meanio master`'));
console.log(chalk.green('Running the publish command again will make a tag of the version pushed '));
console.log(chalk.green(' `mean publish`'));
}
});

Expand Down

0 comments on commit 881dd45

Please sign in to comment.