semver
node package.json, dependency module version operators
之前沒有注意到這個問題,現在 node modules 越來越多,原來在 npm 裡面早就有進行相關的版本管理。可以透過這個頁面看到詳細的描述資訊。特別要介紹的部份是,
^ 字元與版本關係
^ 表示可以進行兼容模式,當第一個非 0 數字被符合之後,就會此此版本安裝。當可安裝版本為 >0.1.5
,此時是會直接使用 0.1.5
這個版本進行安裝。如果一開始使用非 0 數字為版本,就會變成兼容模式,會去尋找符合第一個數字的版本,其他小數字本版號視為可以兼容。
目前 npm install node_modules --save 會採用 ^ 這個符號。
^0.1.3 := >=0.1.3-0 <0.2.0-0 "Compatible with 0.1.3". 0.x.x versions are special: the first non-zero component indicates potentially breaking changes, meaning the caret operator matches any version with the same first non-zero
另外一種版本
^1.2.3 := >=1.2.3-0 <2.0.0-0 "Compatible with 1.2.3". When using caret operators, anything from the specified version (including prerelease) will be supported up to, but not including, the next major version (or its prereleases). 1.5.1 will satisfy ^1.2.3, while 1.2.2 and 2.0.0-beta will not.
~ 字元與版本關係
版本需要數字符合,例如底下的例子 1.2.3 是可以符合到 1.2.3-0 這個之後的下一次小改動版本, 範圍在- 1.2.3
- 1.2.3-0
- 1.2.3-alpha
- 1.2.4 (不符合)
如果今天版本已經變成 1.2.4, 1.3.0 就會無法符合。
~1.2.3 := >=1.2.3-0 <1.3.0-0 "Reasonably close to 1.2.3". When using tilde operators, prerelease versions are supported as well, but a prerelease of the next significant digit will NOT be satisfactory, so 1.3.0-beta will not satisfy ~1.2.3
留言
張貼留言