Skip to content

Optum/semver-sort

Repository files navigation

semver-sort 🦕

Sorts a set of version strings semantically

Usage

semver-sort can be used from code or from the cli directly.

api

import * as semver from "https://deno.land/std@0.155.0/semver/mod.ts";
import { semverSort } from "https://deno.land/x/semver_sort@0.1.3/mod.ts";

const sorted: { version: string; semver: SemVer }[] = semverSort(
  "1.12.0",
  "1.7",
  "2",
  "1.13.0",
);

// 2, 1.13.0, 1.12.0, 1.7

cli

Pass line delimited version strings as stdin to have them sorted.

cat test.txt | deno run "https://deno.land/x/semver_sort@0.1.3/main.ts"
install
deno install "https://deno.land/x/semver_sort@0.1.3/main.ts" -n semver-sort
cat test.txt | semver-sort
get the latest version
cat test.txt | semver-sort | head -n 1
get all versions except the latest
cat test.txt | semver-sort | tail -n +2

Contributing

License

Distributed under the Apache 2.0 License. See LICENSE for more information.

Maintainers

About

Deno module and cli tool for semantically sorting a set of version strings.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published