gobble-cli
Advanced tools
Comparing version 0.4.0 to 0.4.1
# changelog | ||
## 0.4.1 | ||
* Fix logging bug with small terminals ([#13](https://github.com/gobblejs/gobble-cli/issues/13))) | ||
## 0.4.0 | ||
@@ -4,0 +8,0 @@ |
@@ -54,3 +54,5 @@ /*global console */ | ||
} else { | ||
currentLine += new Array( numColumns - currentLine.length ).join( ' ' ); | ||
if ( numColumns - currentLine.length > 0 ) { | ||
currentLine += new Array( numColumns - currentLine.length ).join( ' ' ); | ||
} | ||
currentLine += '\n'; | ||
@@ -57,0 +59,0 @@ lines.push( currentLine ); |
{ | ||
"name": "gobble-cli", | ||
"description": "Command line interface for gobble", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"author": "Rich Harris", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
22245
618