Skip to content

Commit

Permalink
Merge branch 'hotfix/browserify'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriangalliat committed Mar 24, 2015
2 parents c25a7fd + dc08172 commit f03c4e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://twitter.com/pascalduez"
}
],
"version": "2.1.6",
"version": "2.1.7",
"license": {
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { format as fmt } from 'util';
import chalkModule from 'chalk';

const chalk = new chalkModule.constructor({
enabled: process.stderr.isTTY,
enabled: process.stderr && process.stderr.isTTY,
});

// Special chars.
Expand Down

0 comments on commit f03c4e3

Please sign in to comment.