januda-cli 1.0.8 → 1.1.5

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.
Files changed (2) hide show
  1. package/index.js +37 -17
  2. package/package.json +16 -1
package/index.js CHANGED
@@ -1,24 +1,44 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
+ const command = process.argv[2];
4
+
5
+ switch (command) {
6
+
7
+ case "love":
3
8
  console.log(`
4
- =================================
5
- 👨‍💻 Januda Janandith
9
+ 💌 A Loving Note
10
+
11
+ My Love,
12
+
13
+ You are the most beautiful part of my life.
14
+ Every moment with you feels special,
15
+ and every day with you makes my world brighter.
16
+
17
+ Your smile brings me happiness,
18
+ and your presence fills my heart with peace.
6
19
 
7
- Software Engineer | IoT Developer
20
+ No matter where life takes us,
21
+ you will always have a special place in my heart.
8
22
 
9
- Skills
10
- • React.js
11
- • Node.js
12
- • IoT / ESP32
13
- • DevOps
23
+ ❤️ Forever yours
24
+ `);
25
+ break;
14
26
 
15
- Projects
16
- • Neura Health Prediction
17
- EcoGreen360 Greenhouse management system
18
- • UrbanFlow
27
+ case "help":
28
+ console.log(`
29
+ Available commands:
30
+
31
+ januda love - show a loving message
32
+ januda help - show available commands
33
+ `);
34
+ break;
35
+
36
+ default:
37
+ console.log(`
38
+ Unknown command.
19
39
 
20
- Website: https://kjanuda.netlify.app/
21
- GitHub: https://github.com/kjanuda
40
+ Type:
22
41
 
23
- =================================
24
- `);
42
+ januda help
43
+ `);
44
+ }
package/package.json CHANGED
@@ -1 +1,16 @@
1
- {"name":"januda-cli","version":"1.0.8","description":"Januda personal command line tool","main":"index.js","bin":{"januda":"./index.js"},"scripts":{"test":"echo No tests"},"keywords":["januda","cli"],"author":"Januda Janandith","license":"ISC","type":"commonjs"}
1
+ {
2
+ "name": "januda-cli",
3
+ "version": "1.1.5",
4
+ "description": "Januda CLI command",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "januda": "./index.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": ["cli","januda"],
13
+ "author": "Januda Janandith",
14
+ "license": "ISC",
15
+ "type": "commonjs"
16
+ }