style(stderr): use chalkStderr instead of cherr

This commit is contained in:
Pavel Lang 2018-12-28 04:12:58 +01:00
parent 5fd274a799
commit f29eaaec43
No known key found for this signature in database
GPG key ID: 623A223A57974B55
4 changed files with 23 additions and 23 deletions

View file

@ -1,6 +1,6 @@
'use strict';
const chalk = require('..');
const cherr = require('../stderr');
const chalkStderr = require('../stderr');
console.log(chalk.hex('#ff6159')('test'));
console.error(cherr.hex('#ffe861')('test stderr'));
console.error(chalkStderr.hex('#ffe861')('test stderr'));