Skip to content

Commit 61b4d87

Browse files
committed
feat(README): Add how to contribute
1 parent b82bae5 commit 61b4d87

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,21 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
150150
// Same
151151
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
152152
```
153+
154+
## How to Contribute
155+
156+
### Requirements
157+
- Rust compiler installed
158+
- pnpm package manager installed
159+
160+
### Development Setup
161+
To set up the development environment, install the following packages:
162+
```sh
163+
pnpm i
164+
pnpm build
165+
cargo install cargo-tarpaulin
166+
cargo install wasm-pack
167+
```
168+
After installation, run pnpm test to ensure everything works correctly.
169+
170+

README_ko.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,19 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
144144
// Same
145145
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
146146
```
147+
148+
## 기여 방법
149+
150+
### 요구 사항
151+
- Rust 컴파일러 설치
152+
- pnpm 패키지 매니저 설치
153+
154+
### 개발용 설치
155+
개발 환경을 위해 아래 패키지들을 설치합니다.
156+
```sh
157+
pnpm i
158+
pnpm build
159+
cargo install cargo-tarpaulin
160+
cargo install wasm-pack
161+
```
162+
설치 후 pnpm test를 실행하여 문제가 없는지 확인합니다.

0 commit comments

Comments
 (0)