Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #552 from lancejpollard/log-whitespace
Browse files Browse the repository at this point in the history
add wrapping whitespace to logs
  • Loading branch information
tj committed Apr 18, 2014
2 parents fe2aae0 + 66dd0c6 commit 8bf2198
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bin/component-build
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,14 @@ var cssPath = path.join(program.out, program.name + '.css');

mkdir.sync(program.out);

// whitespace

console.log();

process.on('exit', function(){
console.log();
});

// resolve

var options = {
Expand Down
8 changes: 8 additions & 0 deletions bin/component-install
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ var dependencies = program.args;
var jsonPath = path.resolve('component.json');
var hasJson = exists(jsonPath);

// whitespace

console.log();

process.on('exit', function(){
console.log();
});

/**
* Installer.
*/
Expand Down
8 changes: 8 additions & 0 deletions bin/component-search
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ if (program.keywords) {
if (keywords.length) query.keywords = keywords;
}

// whitespace

console.log();

process.on('exit', function(){
console.log();
});

// search

search(query, function (err, pkgs) {
Expand Down
8 changes: 8 additions & 0 deletions bin/component-update
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ var options = {
verbose: true,
};

// whitespace

console.log();

process.on('exit', function(){
console.log();
});

resolve(process.cwd(), options, function (err, tree) {
if (err) fatal(err);

Expand Down

0 comments on commit 8bf2198

Please sign in to comment.