tylersong 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.
Files changed (2) hide show
  1. package/index.js +30 -14
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -7,12 +7,15 @@ const main = async () => {
7
7
  // 도움말 옵션 체크
8
8
  if (process.argv.includes("--help")) {
9
9
  console.log(
10
- chalk.cyan(`
11
- 사용방법:
12
- npx tylerSong
13
-
14
- 옵션:
15
- --help 도움말 표시
10
+ chalk.yellow(`
11
+ ╭───────────────────────────────╮
12
+ │ 사용 방법 │
13
+ ├───────────────────────────────┤
14
+ │ npx tylerSong │
15
+ │ │
16
+ │ 옵션: │
17
+ │ --help 도움말 표시 │
18
+ ╰───────────────────────────────╯
16
19
  `)
17
20
  );
18
21
  process.exit(0);
@@ -23,21 +26,34 @@ const main = async () => {
23
26
  {
24
27
  type: "confirm",
25
28
  name: "showInfo",
26
- message: "저에 대해 궁금하신가요?",
29
+ message: chalk.cyan("저에 대해 궁금하신가요?"),
27
30
  default: true,
28
31
  },
29
32
  ]);
30
33
 
31
34
  if (answer.showInfo) {
32
35
  console.log(
33
- chalk.green(`
34
- 안녕하세요! 프론트엔드 개발자 송민성입니다.
36
+ chalk.bold.cyan(`
37
+ ╭───────────────────────────────────────────╮
38
+ │ 🚀 Frontend Developer Profile 🚀 │
39
+ ╰───────────────────────────────────────────╯
40
+
41
+ `) +
42
+ chalk.green(`👋 안녕하세요!
43
+ 💻 프론트엔드 개발자 ${chalk.bold.yellow("송민성")}입니다.
35
44
 
36
- Github: https://github.com/alstjd0051
37
- E-mail: wsc7202@gmail.com
38
-
39
- 더 많은 정보는 --help를 통해 확인해주세요.
40
- `)
45
+ `) +
46
+ chalk.hex("#fef6e1")(`📌 Github: ${chalk.underline.whiteBright(
47
+ `https://github.com/alstjd0051`
48
+ )}
49
+ `) +
50
+ chalk.blue(`✉️ E-mail: ${chalk.underline.whiteBright(
51
+ `wsc7202@gmail.com`
52
+ )}
53
+ `) +
54
+ chalk.magenta(`
55
+ 💡 더 많은 정보는 ${chalk.bold("--help")}를 통해 확인해주세요.
56
+ `)
41
57
  );
42
58
  }
43
59
  };
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "tylersong",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "나의 CLI 자기소개 도구",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "tylersong": "./index.js"
7
+ "tylersong": "index.js"
8
8
  },
9
9
  "type": "module",
10
10
  "keywords": [