Skip to content

Commit

Permalink
-> v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed May 8, 2016
1 parent 9672515 commit 1f7060d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# node-console-group changelog

## 0.2.1

* Consistently use `this._stdout`

## 0.2.0

* `jsnext:main`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "console-group",
"version": "0.2.0",
"version": "0.2.1",
"description": "basic console.group implementation for node",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function consoleLog () {

function consoleGroup () {
prefix += '⎢ ';
process.stderr.write( '\u001b[1m' + format( arguments ) + '\u001b[22m\n' );
this._stdout.write( '\u001b[1m' + format( arguments ) + '\u001b[22m\n' );
}

function consoleGroupEnd () {
Expand Down

0 comments on commit 1f7060d

Please sign in to comment.