common/l*: add Korean translation (#14665)

This commit is contained in:
코드싸이
2024-11-07 09:27:55 +09:00
committed by GitHub
parent feb91d75ea
commit ef281bb658
103 changed files with 2279 additions and 0 deletions

24
pages.ko/common/lerna.md Normal file
View File

@@ -0,0 +1,24 @@
# lerna
> 여러 패키지가 있는 JavaScript 프로젝트 관리.
> 더 많은 정보: <https://lerna.js.org>.
- 프로젝트 파일 초기화(`lerna.json`, `package.json`, `.git` 등):
`lerna init`
- 각 패키지의 모든 외부 의존성을 설치하고 로컬 의존성을 심볼릭 링크로 연결:
`lerna bootstrap`
- `package.json`에 포함된 특정 스크립트를 모든 패키지에서 실행:
`lerna run {{스크립트}}`
- 모든 패키지에서 임의의 셸 명령 실행:
`lerna exec -- {{ls}}`
- 마지막 릴리스 이후 변경된 모든 패키지 배포:
`lerna publish`