Skip to content

Commit 209ef72

Browse files
authored
Merge branch 'main' into fix-landing-qa
2 parents 29681d1 + a4eb834 commit 209ef72

File tree

6 files changed

+45
-2
lines changed

6 files changed

+45
-2
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`를 실행하여 문제가 없는지 확인합니다.

apps/landing/src/app/DevupUICard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function DevupUICard() {
2727
/>
2828
<VStack gap="8px">
2929
<Text color="$text" typography="h5">
30-
Devup-ui
30+
Devup UI
3131
</Text>
3232
<Text color="$text" typography="textL">
3333
1.0.18

packages/vite-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @devup-ui/vite-plugin
22

3+
## 1.0.42
4+
5+
### Patch Changes
6+
7+
- 37bf690: Add noExternal for library
8+
39
## 1.0.41
410

511
### Patch Changes

packages/vite-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"vite"
1919
],
2020
"type": "module",
21-
"version": "1.0.41",
21+
"version": "1.0.42",
2222
"scripts": {
2323
"lint": "eslint",
2424
"build": "tsc && vite build"

packages/vite-plugin/src/plugin.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ export function DevupUI({
110110
optimizeDeps: {
111111
exclude: include,
112112
},
113+
ssr: {
114+
noExternal: [...include, /@devup-ui/],
115+
},
113116
}
114117
if (extractCss) {
115118
ret['build'] = {

0 commit comments

Comments
 (0)