From fd8b7b3a1aacb96824b640d82e3c8333cb9cc7bf Mon Sep 17 00:00:00 2001 From: Eddy Filip Date: Wed, 24 May 2023 12:54:47 +0200 Subject: [PATCH] Export semverToInt This function is now exported so that other pakcages that use op-js (e.g. vscode extension and load-secrets-action) can easily convert a version to a build number. --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 17b58bd..f3e95e9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,7 @@ import { cli, ClientInfo, CLIError, Flags } from "./cli"; export { CLIError, ExecutionError, + semverToInt, ValidationError, ValidationErrorType, } from "./cli";