shoudoo 3.0.1 → 3.0.3

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/dist/index.js +19 -20
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5,6 +5,24 @@ import boxen from "boxen";
5
5
  import f from "figlet";
6
6
  import terminalLink from "terminal-link";
7
7
 
8
+ // src/config.ts
9
+ var config = {
10
+ name: "Ashikur Sheikh Shoudo",
11
+ bio: "\n Ex-SPSCian \u2022 CEO of TheKami \u2022 CTO of SaltDrio \n",
12
+ about: `Hey, I am shoudo. I love traveling \u2014 skydiving is on my bucket list.
13
+ In my free time, I watch anime & movies, follow UFC & F1, and play Minecraft.
14
+ I have a passion for technologies and I particularly enjoy building things.
15
+ `,
16
+ extra: {
17
+ github: { label: "@asikrshoudo", url: "https://github.com/asikrshoudo" },
18
+ twitter: { label: "@im_shoudo", url: "https://x.com/im_shoudo" },
19
+ email: { label: "shoudo@proton.me", url: "mailto:shoudo@proton.me" },
20
+ website: { label: "shoudo.xyz", url: "https://www.shoudo.xyz" }
21
+ },
22
+ skills: ["C", "Java", "Python", "Git", "Linux"]
23
+ };
24
+ var config_default = config;
25
+
8
26
  // src/utils.ts
9
27
  import c from "chalk";
10
28
  function formatSkillsGrid(skills2) {
@@ -19,25 +37,6 @@ function formatSkillsGrid(skills2) {
19
37
  return result.join("\n");
20
38
  }
21
39
 
22
- // src/config.ts
23
- var config = {
24
- name: "Asikur Shek Shoudo",
25
- bio: "\n Ex-spscian \u2022 CEO of Thekami \n",
26
- about: `Hey, I am shoudo. btw i love traveling.
27
- I try to make things ${c.bold.magenta("super fast")} and ${c.bold.magenta("beautiful")} as well.
28
- In my free time, I like to watch ${c.bold.magenta("Movie")} a lot and think about my future works.
29
- I particularly enjoy learning about something. I have a passion for ${c.bold.magenta("technologies")}.
30
- `,
31
- extra: {
32
- github: { label: "@asikrshoudo", url: "https://github.com/asikrshoudo" },
33
- email: { label: "shoudo@proton.me", url: "shoudo@proton.me" },
34
- website: { label: "shoudo.xyz", url: "https://www.shoudo.xyz" }
35
- // facebook: { label: "Facebook", url: "https://facebook.com/ruhanrouf" },
36
- },
37
- skills: ["C", "Python", "Git", "Linux"]
38
- };
39
- var config_default = config;
40
-
41
40
  // src/index.ts
42
41
  var title = f.textSync(config_default.name, {
43
42
  font: "RubiFont",
@@ -55,7 +54,7 @@ ${c.white(config_default.about)}
55
54
  ${boxen(skills, {
56
55
  padding: 1,
57
56
  borderStyle: "round",
58
- borderColor: "magenta",
57
+ borderColor: "blueBright",
59
58
  title: "Skills",
60
59
  titleAlignment: "center"
61
60
  })}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shoudoo",
3
3
  "type": "module",
4
- "version": "3.0.1",
4
+ "version": "3.0.3",
5
5
  "description": "fetch myself",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",