바뀜

둘러보기로 가기 검색하러 가기

2020년 1월 15일

483 바이트 추가됨, 2020년 1월 15일 (수) 13:41
편집 요약 없음
* 부 버전(Minor version): 기존 버전과 호환되면서 기능이 추가된 경우
* 수 버전(Patch version): 기존 버전과 호환되면서 버그를 수정한 경우
</nowiki>
 
* NPM의 버전 관리 중 틸드(~)와 캐럿(^)에 대해 설명한다. 과거에는 틸드(~)를 썼으나 현재는 캐럿(^)을 기본값으로 쓴다.
 
<nowiki>
npm uses the tilde (~) and caret (^) to designate which patch and minor versions to use respectively.
 
So if you see ~1.0.2 it means to install version 1.0.2 or the latest patch version such as 1.0.4. If you see ^1.0.2 it means to install version 1.0.2 or the latest minor or patch version such as 1.1.0.
</nowiki>

둘러보기 메뉴