Skip to content

Commit ba2feeb

Browse files
authored
Merge pull request #367 from fwangdo/main
How to contribute
2 parents 530031e + 6c7e709 commit ba2feeb

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,20 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
155155
// Same
156156
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
157157
```
158+
159+
## How to Contribute
160+
161+
### Requirements
162+
- [Node.js](https://nodejs.org) (LTS version recommended)
163+
- [Rust](https://rustup.rs) compiler
164+
- pnpm package manager (`npm install -g pnpm`)
165+
166+
### Development Setup
167+
To set up the development environment, install the following packages:
168+
```sh
169+
pnpm i
170+
pnpm build
171+
cargo install cargo-tarpaulin
172+
cargo install wasm-pack
173+
```
174+
After installation, run `pnpm test` to ensure everything works correctly.

README_ko.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,20 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
149149
// Same
150150
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
151151
```
152+
153+
## 기여 방법
154+
155+
### 요구 사항
156+
- [Node.js](https://nodejs.org) (LTS 버전 권장)
157+
- [Rust](https://rustup.rs) 컴파일러
158+
- pnpm 패키지 매니저 (`npm install -g pnpm`)
159+
160+
### 개발 환경 설정
161+
개발 환경을 위해 아래 패키지들을 설치합니다:
162+
```sh
163+
pnpm i
164+
pnpm build
165+
cargo install cargo-tarpaulin
166+
cargo install wasm-pack
167+
```
168+
설치 후 `pnpm test`를 실행하여 문제가 없는지 확인합니다.

0 commit comments

Comments
 (0)