Skip to content

Commit

Permalink
Use ansicolors wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre committed Feb 25, 2014
1 parent b070626 commit 16dece4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Simple logger (using both file and console)
*/
module.exports = function(logFile, params) {
var colors = require('ansicolors'),
var colors = require('../lib/ansicolors'),
styles = require('ansistyles'),
fs = require('fs'),
ipc = new (require('./ipc'))('log'),
Expand Down
2 changes: 1 addition & 1 deletion reporters/plain.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Results formatter for --format=plain
*/
var colors = require('ansicolors'),
var colors = require('../lib/ansicolors'),
fold = require('travis-fold'),
rpad = require('../core/pads').rpad,
OK = '✓',
Expand Down

0 comments on commit 16dece4

Please sign in to comment.