Skip to content

Commit e94f354

Browse files
authored
Merge pull request #8 from DevKor-github/chore/#7/yarn
2 parents f34a97b + f175984 commit e94f354

File tree

6 files changed

+3945
-7862
lines changed

6 files changed

+3945
-7862
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ node_modules
1111
dist
1212
dist-ssr
1313
*.local
14+
/.pnp
15+
.pnp.*
16+
.yarn/*
17+
!.yarn/patches
18+
!.yarn/plugins
19+
!.yarn/releases
20+
!.yarn/versions
1421

1522
# Editor directories and files
1623
.vscode/*

β€Ž.yarnrc.ymlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: 'node-modules'

β€ŽREADME.mdβ€Ž

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,43 @@
2727
- feat/[μ„ΈλΆ€ κΈ°λŠ₯] :: νŠΉμ • κΈ°λŠ₯ 개발 μ„œλΈŒ 브랜치 (λ°”λ‘œ dev γ„΄γ„΄, μœ„μ— 꺼에 λ¨Έμ§€)
2828
- fix/#[이슈 번호]/[버그 이름] :: νŠΉμ • 버그 μˆ˜μ • 브랜치
2929

30+
### 디렉토리 ꡬ쑰
31+
32+
```
33+
src/
34+
β”œβ”€β”€ App.tsx
35+
β”œβ”€β”€ main.tsx
36+
β”œβ”€β”€ index.css
37+
β”œβ”€β”€ pages/
38+
β”‚ β”œβ”€β”€ [νŽ˜μ΄μ§€ 이름 1]Page.tsx
39+
β”‚ β”œβ”€β”€ [νŽ˜μ΄μ§€ 이름 2]Page.tsx
40+
β”‚ └── index.ts
41+
β”œβ”€β”€ common/
42+
β”‚ β”œβ”€β”€ components/
43+
β”‚ β”‚ └── [μ—¬λŸ¬ κΈ°λŠ₯μ—μ„œ κ³΅ν†΅μ μœΌλ‘œ μ‚¬μš©λ˜λŠ” μ»΄ν¬λ„ŒνŠΈ].tsx
44+
β”‚ β”œβ”€β”€ hooks/
45+
β”‚ β”‚ └── [μ—¬λŸ¬ κΈ°λŠ₯μ—μ„œ κ³΅ν†΅μ μœΌλ‘œ μ‚¬μš©λ˜λŠ” ν›…].tsx
46+
β”‚ └── utils/
47+
β”‚ └── [μ—¬λŸ¬ κΈ°λŠ₯μ—μ„œ κ³΅ν†΅μ μœΌλ‘œ μ‚¬μš©λ˜λŠ” μœ ν‹Έ ν•¨μˆ˜].tsx
48+
β”œβ”€β”€ features/
49+
β”‚ β”œβ”€β”€ [κΈ°λŠ₯ 이름 1]/
50+
β”‚ β”‚ β”œβ”€β”€ components/
51+
β”‚ β”‚ β”œβ”€β”€ hooks/
52+
β”‚ β”‚ └── utils/
53+
β”‚ └── [κΈ°λŠ₯ 이름 2]/
54+
β”‚ β”œβ”€β”€ components/
55+
β”‚ └── hooks/
56+
β”œβ”€β”€ libs/
57+
β”‚ └── routes/
58+
β”‚ β”œβ”€β”€ stack.ts
59+
β”‚ └── stackConfig.ts
60+
└── assets/
61+
└── images/
62+
└── [이미지 파일].png
63+
└── icons/
64+
└── [μ•„μ΄μ½˜ 파일].png
65+
```
66+
3067
### μ‚¬μš© μŠ€νƒ
3168

3269
- Vite + React + TypeScript

0 commit comments

Comments
Β (0)