Skip to content

Commit 02c762a

Browse files
authored
Merge pull request #41 from pss-aileen/improve/#38-to-lowercase-letter-and-change-many-prefix
💕 feat: prefixを小文字に、normalのprefix大幅変更 (#38)
2 parents 4c238bb + c248d02 commit 02c762a

File tree

3 files changed

+53
-32
lines changed

3 files changed

+53
-32
lines changed

dist/data/data.json

Lines changed: 51 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,67 +2,88 @@
22
{
33
"id": "0",
44
"prefixType": "normal",
5-
"icon": "🐢",
6-
"displayName": "NORMAL",
5+
"icon": "🌞",
6+
"displayName": "normal",
77
"htmlClassName": "normalPrefixList",
88
"prefix": [
99
{
1010
"id": "0",
1111
"constant": "normal-feature",
1212
"prefixIcon": "💕",
13-
"prefixText": "FEAT",
14-
"description": "新機能の追加"
13+
"prefixText": "feat",
14+
"description": "新機能の実装(TOP実装、CSS実装、大規模な修正・変更)"
1515
},
1616
{
1717
"id": "1",
18-
"constant": "normal-fix",
19-
"prefixIcon": "🐝",
20-
"prefixText": "FIX",
21-
"description": "不具合の修正"
18+
"constant": "normal-improve",
19+
"prefixIcon": "🦄",
20+
"prefixText": "improve",
21+
"description": "リファクタリング、コード構造の変更、デザインのアップデート"
2222
},
2323
{
2424
"id": "2",
25-
"constant": "normal-docs",
26-
"prefixIcon": "📝",
27-
"prefixText": "DOCS",
28-
"description": "コードに関係ない、影響がない時"
25+
"constant": "normal-bugfix",
26+
"prefixIcon": "🐝",
27+
"prefixText": "bugFix",
28+
"description": "エラー文解決、画面がおかしいなどの不具合修正"
2929
},
3030
{
3131
"id": "3",
32-
"constant": "normal-style",
33-
"prefixIcon": "🎨",
34-
"prefixText": "STYLE",
35-
"description": "スタイルの変更"
32+
"constant": "normal-fix",
33+
"prefixIcon": "🛠️",
34+
"prefixText": "fix",
35+
"description": "誤字脱字、その他bugでないものの修正、テキストの変更"
3636
},
3737
{
3838
"id": "4",
39+
"constant": "normal-wip",
40+
"prefixIcon": "🚧",
41+
"prefixText": "wip",
42+
"description": "ブランチ内での作業wip状態、途中保存しておきたい"
43+
},
44+
{
45+
"id": "5",
3946
"constant": "normal-chore",
40-
"prefixIcon": "🔧",
41-
"prefixText": "CHORE",
42-
"description": "その他なんでも"
47+
"prefixIcon": "📂",
48+
"prefixText": "chore",
49+
"description": "その他、フォーマット、フォルダ移動等"
4350
},
4451
{
4552
"id": "5",
46-
"constant": "normal-release",
47-
"prefixIcon": "🚀",
48-
"prefixText": "RELEASE",
49-
"description": "VERSION 1.0.0"
53+
"constant": "normal-docs",
54+
"prefixIcon": "📘",
55+
"prefixText": "docs",
56+
"description": "ドキュメント関連の追加・修正"
57+
},
58+
{
59+
"id": "6",
60+
"constant": "normal-github",
61+
"prefixIcon": "📗",
62+
"prefixText": ".github",
63+
"description": "リポジトリ関連の設定(IssueTemp, GitHubActions etc)"
64+
},
65+
{
66+
"id": "7",
67+
"constant": "normal-package",
68+
"prefixIcon": "📦",
69+
"prefixText": "package",
70+
"description": "パッケージインストール関連"
5071
}
5172
]
5273
},
5374
{
5475
"id": "1",
5576
"prefixType": "til",
5677
"icon": "📝",
57-
"displayName": "DAILY REPORTS",
78+
"displayName": "daily reports",
5879
"htmlClassName": "TILPrefixList",
5980
"prefix": [
6081
{
6182
"id": "0",
6283
"constant": "til-update",
6384
"prefixIcon": "📚",
64-
"prefixText": "UPDATE",
65-
"description": "DAILY REPORT 231201",
85+
"prefixText": "update",
86+
"description": "daily report 231201",
6687
"option": "tilDateSet"
6788
}
6889
]
@@ -71,21 +92,21 @@
7192
"id": "2",
7293
"prefixType": "practice",
7394
"icon": "🏄🏻‍♀️",
74-
"displayName": "PRACTICE PROJECT (React, Three.js)",
95+
"displayName": "practice project (React, Three.js)",
7596
"htmlClassName": "practiceProjectPrefixList",
7697
"prefix": [
7798
{
7899
"id": "0",
79100
"constant": "practice-learn",
80101
"prefixIcon": "📖",
81-
"prefixText": "LEARN",
102+
"prefixText": "learn",
82103
"description": "学んだ物の名前、講座名、概要・まとめはコメントにでも"
83104
},
84105
{
85106
"id": "1",
86107
"constant": "practice-video",
87108
"prefixIcon": "🎥",
88-
"prefixText": "WATCH",
109+
"prefixText": "watch",
89110
"description": "1. 動画タイトル(Udemyコピペ) コメントに学んだ内容まとめ"
90111
}
91112
]
@@ -94,7 +115,7 @@
94115
"id": "3",
95116
"prefixType": "paiza",
96117
"icon": "📓",
97-
"displayName": "PAIZA",
118+
"displayName": "paiza",
98119
"htmlClassName": "paizaPrefixList",
99120
"prefix": [
100121
{

dist/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120

121121
tilUpdate() {
122122
const day = new Date();
123-
const text = `DAILY REPORT ${day.getFullYear() - 2000}${String(day.getMonth() + 1).padStart(2, "0")}${String(day.getDate()).padStart(2, "0")}`;
123+
const text = `daily report ${day.getFullYear() - 2000}${String(day.getMonth() + 1).padStart(2, "0")}${String(day.getDate()).padStart(2, "0")}`;
124124
return text;
125125
}
126126

src/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120

121121
tilUpdate() {
122122
const day = new Date();
123-
const text = `DAILY REPORT ${day.getFullYear() - 2000}${String(day.getMonth() + 1).padStart(2, "0")}${String(day.getDate()).padStart(2, "0")}`;
123+
const text = `daily report ${day.getFullYear() - 2000}${String(day.getMonth() + 1).padStart(2, "0")}${String(day.getDate()).padStart(2, "0")}`;
124124
return text;
125125
}
126126

0 commit comments

Comments
 (0)