From ef3bbe9d9e15ae50adfad49a5daf600cc5edc7b1 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 22 May 2024 21:50:02 +0000 Subject: [PATCH] Fix: apm split --- package.json | 2 +- src/apm/Apm.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a07fd7e..539c5d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hivessh", - "version": "0.3.8", + "version": "0.3.9", "description": "HiveSsh simplifies SSH2 connections via promise-based task execution on Linux servers with built-in server utilities and powerful command execution functions", "main": "dist/index.js", "type": "module", diff --git a/src/apm/Apm.ts b/src/apm/Apm.ts index fbb7b0f..fe3f5c9 100644 --- a/src/apm/Apm.ts +++ b/src/apm/Apm.ts @@ -4,6 +4,7 @@ import { AbstractPackage, AbstractPackageManager } from "./ApmInterface.js" import { initAptApm } from "./apt.js" import { initDnfApm } from "./dnf.js" import { initYumApm } from "./yum.js" +export { AbstractPackage, AbstractPackageManager } from "./ApmInterface.js" export class AbstractPackageManagerWrapper { type: string