Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,21 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
// Same
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
```

## How to Contribute

### Requirements
- Rust compiler installed
- pnpm package manager installed

### Development Setup
To set up the development environment, install the following packages:
```sh
pnpm i
pnpm build
cargo install cargo-tarpaulin
cargo install wasm-pack
```
After installation, run pnpm test to ensure everything works correctly.


16 changes: 16 additions & 0 deletions README_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,19 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
// Same
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
```

## 기여 방법

### 요구 사항
- Rust 컴파일러 설치
- pnpm 패키지 매니저 설치
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pnpm 패키지 매니저를 설치하기 위해서 nodejs를 설치해야 한다는 것도 추가되었으면 좋겠습니다
또한 각 운영체제마다 어떻게 러스트 컴파일러를 설치하면 되는지도 명시되면 좋을 것 같습니다


### 개발용 설치
개발 환경을 위해 아래 패키지들을 설치합니다.
```sh
pnpm i
pnpm build
cargo install cargo-tarpaulin
cargo install wasm-pack
```
설치 후 pnpm test를 실행하여 문제가 없는지 확인합니다.