januda-cli 1.0.1 → 1.0.2
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/index.js +11 -15
- package/package.json +1 -1
- package/shani.png +0 -0
- package/shani1.png +0 -0
package/index.js
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const { exec } = require("child_process");
|
|
4
|
+
const path = require("path");
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Shani,
|
|
8
|
-
I Love You ❤️
|
|
9
|
-
|
|
10
|
-
You are the most beautiful
|
|
11
|
-
part of my life.
|
|
12
|
-
|
|
13
|
-
you are always in my heart.
|
|
14
|
-
|
|
15
|
-
Forever Yours,
|
|
16
|
-
Januda
|
|
6
|
+
const img = path.join(__dirname, "shani1.png");
|
|
17
7
|
|
|
8
|
+
console.log(`
|
|
9
|
+
████████████████████████████████
|
|
10
|
+
Shani Gamage
|
|
18
11
|
████████████████████████████████
|
|
19
|
-
`;
|
|
20
12
|
|
|
21
|
-
|
|
13
|
+
💖 A Promise For Shani
|
|
14
|
+
Opening photo...
|
|
15
|
+
`);
|
|
16
|
+
|
|
17
|
+
exec(`start "" "${img}"`);
|
package/package.json
CHANGED
package/shani.png
ADDED
|
Binary file
|
package/shani1.png
ADDED
|
Binary file
|