We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a72599 commit 932f59cCopy full SHA for 932f59c
README.md
@@ -19,9 +19,15 @@
19
20
### 🚀 설치
21
22
-- npx 사용
23
```bash
24
-npx commitHepler
+#전역 설치
+npm install -g @seyun31/commithelper
25
+
26
+# npx 사용
27
+npm @seyun31/commithelper
28
29
+# 로컬 설치
30
+npm install @seyun31/commithelper
31
```
32
33
---
@@ -106,14 +112,24 @@ $ npx commitHelper
106
112
107
113
### 🛠️ 개발 & 품질 보증
108
114
109
-- Eslint 설정
115
+- Lint & Format
110
116
111
-npm run lint
117
+npm run lint # ESLint 검사
118
+npm run format # Prettier 자동 포맷
119
-<br>
120
-- Prettier 자동 포맷
121
+- 테스트
122
-npm run format
123
+npm test # Jest 테스트 실행
124
125
126
+- CI/CD
127
128
+ 1️⃣ `npm ci` 의존성 설치
129
130
+ 2️⃣ `npm run lint` 코드 스타일 검사
131
132
+ 3️⃣ `npm run build` TypeScript build
133
134
+ 4️⃣ `npm test` Jest 테스트
135
0 commit comments