We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ae3d9e + e56c2b8 commit c05d4c5Copy full SHA for c05d4c5
bin/wiby
@@ -9,7 +9,7 @@ process.on('unhandledRejection', (err) => {
9
10
require('dotenv').config()
11
12
-const chalk = require('chalk')
+const colors = require('colors/safe');
13
const yargs = require('yargs')
14
15
yargs
@@ -24,7 +24,7 @@ yargs
24
}
25
26
if (msg) {
27
- console.error(chalk.red.bold(msg));
+ console.error(colors.red.bold(msg));
28
console.error();
29
30
package.json
@@ -31,7 +31,7 @@
31
"dependencies": {
32
"@octokit/graphql": "^4.5.0",
33
"@octokit/rest": "^18.0.0",
34
- "chalk": "^4.1.0",
+ "colors": "^1.4.0",
35
"debug": "^4.3.1",
36
"dotenv": "^10.0.0",
37
"git-url-parse": "^11.1.2",
0 commit comments