Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,20 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
// Same
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
```

## How to Contribute

### Requirements
- [Node.js](https://nodejs.org) (LTS version recommended)
- [Rust](https://rustup.rs) compiler
- pnpm package manager (`npm install -g pnpm`)

### 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.
17 changes: 17 additions & 0 deletions README_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,20 @@ const box = <Box _hover={{bg: ["red", "blue"]}}/>
// Same
const box = <Box _hover={[{bg: "red"}, {bg: "blue"}]}/>
```

## 기여 방법

### 요구 사항
- [Node.js](https://nodejs.org) (LTS 버전 권장)
- [Rust](https://rustup.rs) 컴파일러
- pnpm 패키지 매니저 (`npm install -g pnpm`)

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