Skip to content

Commit d89a6c3

Browse files
Update README and setup documentation to replace Yarn with npm for package management
1 parent 4da4cb9 commit d89a6c3

4 files changed

Lines changed: 6 additions & 15 deletions

File tree

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ Contoso 아웃도어 컴파니는 회사의 다양한 아웃도어용 제품 홍
4242

4343
- [nvm](https://github.com/nvm-sh/nvm) 또는 [nvm for Windows](https://github.com/coreybutler/nvm-windows) 설치
4444
- nvm을 통한 [Node.js](https://nodejs.org/) 최신 LTS 버전 설치
45-
- [Yarn](https://yarnpkg.com/getting-started/install) 패키지 매니저 설치
46-
47-
```bash
48-
npm install -g yarn
49-
```
5045

5146
### Java
5247

complete/javascript/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,18 @@
1010

1111
### 필요 조건
1212
- Node.js (14.x 이상)
13-
- Yarn
14-
```bash
15-
npm install -g yarn
16-
```
1713

1814
### 설치 및 실행
1915
```bash
2016
# 의존성 설치
21-
yarn install
17+
npm install
2218

2319
# 개발 서버 실행
24-
yarn dev
20+
npm dev
2521

2622
# 프로덕션 빌드
27-
yarn build
23+
npm build
2824

2925
# 빌드 미리보기
30-
yarn preview
26+
npm preview
3127
```

docs/00-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Node.js 버전 확인
3535
node --version
3636
npm --version
37-
yarn --version
37+
3838
```
3939

4040
```bash

docs/02-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Contoso 아웃도어 컴파니의 마케팅 팀에서는 제품 홍보를 위한
2323
1. React 앱을 스캐폴딩(프로젝트 기본 구조 자동 생성)합니다. 아래와 같은 프롬프트를 이용해 보세요.
2424

2525
```text
26-
`javascript` 폴더 안에 React를 사용한 프론트엔드 앱을 구성하려합니다. 패키지매니저는 `yarn`, 빌드 툴은 `vite`, 언어는 JavaScript를 사용할 예정이고 AI를 사용한 빠른 마크업 개발을 위해 CSS 프레임워크론 Tailwind CSS를 사용할 예정입니다. 새로운 폴더를 만들지 말고 `javascript` 폴더에 React 앱 스캐폴딩을 시작해주세요.
26+
`javascript` 폴더 안에 React를 사용한 프론트엔드 앱을 구성하려합니다. 패키지매니저는 `npm`, 빌드 툴은 `vite`, 언어는 JavaScript를 사용할 예정이고 AI를 사용한 빠른 마크업 개발을 위해 CSS 프레임워크론 Tailwind CSS를 사용할 예정입니다. 새로운 폴더를 만들지 말고 `javascript` 폴더에 React 앱 스캐폴딩을 시작해주세요.
2727
```
2828
2929
1. 스캐폴딩이 잘 마무리 되었는지 확인합니다.

0 commit comments

Comments
 (0)