to-semver:从字符串数组中获取有效,已排序和清除的semver版本数组

时间:2024-05-18 08:02:38
【文件属性】:

文件名称:to-semver:从字符串数组中获取有效,已排序和清除的semver版本数组

文件大小:5KB

文件格式:ZIP

更新时间:2024-05-18 08:02:38

JavaScript

达到目的 从字符串数组中获取有效,已排序和清除的版本数组 当您具有未排序的版本列表(例如git标记)并希望将它们用作semver版本时,该功能很有用。 安装 $ npm install to-semver 用法 import toSemver from 'to-semver' ; toSemver ( [ 'v1.3.16' , 'v1.7.0' , 'test' , 'v1.6.9' ] ) ; /* [ '1.7.0', '1.6.9' '1.3.16' ] */ 原料药 toSemver(版本,选项?) 版本 类型: string[] 选项 类型: object includePrereleases 类型: boolean 默认值: true 包括预发行版,例如1.2.3-alpha.3 。 干净的 类型: boolean 默认值: true 干净的版本。 例如,


【文件预览】:
to-semver-main
----index.js(644B)
----test.js(1KB)
----package.json(944B)
----index.test-d.ts(281B)
----readme.md(1KB)
----.github()
--------workflows()
----license(1KB)
----index.d.ts(608B)
----.gitignore(23B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitattributes(19B)

网友评论