Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프로퍼티 어트리뷰트
- 디스트럭처링
- 비전공이지만 개발자로 먹고삽니다
- DOM
- 프론트엔드 성능 최적화 가이드
- Set과 Map
- 올림픽 통계 서비스 최적화
- 스코프
- const
- 모던 자바스크립트 Deep Dive
- 제너레이터와 async/await
- 인터넷 장비
- Property Attribute
- 이미지 갤러리 최적화
- 자바스크립트 딥다이브
- 브라우저의 렌더링 과정
- 프로그래머스
- 전역변수의문제점
- package management
- 빌트인 객체
- 자바스크립트
- var 사용금지
- 딥다이브
- 자바스크립트 패턴
- 커리어
- 블로그 서비스 최적화
- 이벤트
- peerdependencies
- Babel과 Webpack
- ES6함수 추가기능
Archives
- Today
- Total
Dev Blog
dependencies version in package.json 본문
Web Development/General Tech Knowledges
dependencies version in package.json
Nomad Kim 2021. 10. 16. 18:52semantic versioning
Semantic versioning (aka SemVer), is a widely adopted version scheme that uses a sequence of three digits (Major.Minor.Patch), an optional pre-release tag and optional build meta tag.
- backward-incompatible change increments the major number
- new functionality that is backwards compatible API additions/changes increments the minor number
- simple bug fix to existing functionality increments the patch number
difference between tilde(~) and caret(^) in package.json
Symbol | Dependency | Versions | Changes |
caret (^) | ^3.9.2 | 3.*.* |
|
tilde (~) | ~3.9.2 | 3.9.* |
|
simply,
- ~version will update you to all future patch versions, without incrementing the minor version. ~1.2.3 will use releases from 1.2.3 to <1.3.0.
- ^version will update you to all future minor/patch versions, without incrementing the major version. ^2.3.4 will use releases from 2.3.4 to <3.0.0.
sources
'Web Development > General Tech Knowledges' 카테고리의 다른 글
peerDependencies 와 overrides 의 차이점(package management) (0) | 2024.11.09 |
---|---|
DOM 트리의 탐색 (0) | 2022.12.13 |
What is JSON File ? (0) | 2021.09.09 |
Service worker (0) | 2021.09.03 |
CDN (0) | 2021.08.01 |
Comments