├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .mocharc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── compare.ts ├── compareVersions.ts ├── index.ts ├── satisfies.ts ├── utils.ts └── validate.ts ├── test ├── compare.ts ├── satisfies.ts ├── sort.ts └── validate.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/.mocharc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/package.json -------------------------------------------------------------------------------- /src/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/compare.ts -------------------------------------------------------------------------------- /src/compareVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/compareVersions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/satisfies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/satisfies.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/src/validate.ts -------------------------------------------------------------------------------- /test/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/test/compare.ts -------------------------------------------------------------------------------- /test/satisfies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/test/satisfies.ts -------------------------------------------------------------------------------- /test/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/test/sort.ts -------------------------------------------------------------------------------- /test/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/test/validate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omichelsen/compare-versions/HEAD/tsconfig.json --------------------------------------------------------------------------------