mells-cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +5 -2
- package/package.json +9 -2
package/bin/index.js
CHANGED
|
@@ -96,8 +96,11 @@ const processCommand = async (input) => {
|
|
|
96
96
|
case 'quit':
|
|
97
97
|
spinner.start('Shutting down...');
|
|
98
98
|
await sleep(600);
|
|
99
|
-
spinner.succeed(chalk.green('
|
|
100
|
-
console.log(chalk.
|
|
99
|
+
spinner.succeed(chalk.green('Thank you for checking out my CLI!'));
|
|
100
|
+
console.log(chalk.cyan('\n Hope you visit my website too:'));
|
|
101
|
+
console.log(chalk.white.bold(' → https://mellowbricks.co.in\n'));
|
|
102
|
+
console.log(chalk.blue.italic(' "Don\'t have a good day, have a GREAT day"'));
|
|
103
|
+
console.log(chalk.blue.italic(' - Free Guy\n'));
|
|
101
104
|
return false;
|
|
102
105
|
case 'whoami':
|
|
103
106
|
case 'sudo hire-mells':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mells-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Interactive DevOps portfolio CLI - Meet Melbin Kuriakose",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/index.js",
|
|
@@ -10,7 +10,14 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node bin/index.js"
|
|
12
12
|
},
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"cli",
|
|
15
|
+
"portfolio",
|
|
16
|
+
"devops",
|
|
17
|
+
"linux",
|
|
18
|
+
"interactive",
|
|
19
|
+
"terminal"
|
|
20
|
+
],
|
|
14
21
|
"author": "Melbin Kuriakose <melbinmk04@gmail.com>",
|
|
15
22
|
"repository": {
|
|
16
23
|
"type": "git",
|