
semver
List of commands for semver:
-
semver:tldr:09a3a semver: Convert a version string to the semantic versioning format.$ semver --coerce ${1-2}try on your machineexplain this command
-
semver:tldr:51e3c semver: Test if `1.2.3` matches the `^1.0` range (prints an empty string if it does not match).$ semver ${1-2-3} --range "${^1-0}"try on your machineexplain this command
-
semver:tldr:e17b7 semver: Check if a version string respects the semantic versioning format (prints an empty string if it does not match).$ semver ${1-2}try on your machineexplain this command
-
semver:tldr:e63e9 semver: Test with multiple ranges.$ semver ${1-2-3} --range ${">=1-0"} ${"<2-0"}try on your machineexplain this command