We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75f40dc commit b239439Copy full SHA for b239439
1 file changed
utils/exit.js
@@ -1,6 +1,12 @@
1
const pkg = require("../package.json");
2
const { cyan } = require("chalk");
3
+const io = require("console-read-write");
4
5
module.exports = () => {
- console.log(cyan(`\nThank you for using ${pkg.name}!\n`));
6
+ io.write(cyan(`\nThank you for using ${pkg.name}!\n`));
7
+ io.write(
8
+ cyan(
9
+ "Please ⭐️ the repo: https://github.com/msaaddev/github-interact-cli/"
10
+ )
11
+ );
12
};
0 commit comments