1import { wrapKubeCoalesce } from './kubeCoalesceF.mts'2import { resourcesActionCore } from './resourcesActionCoreF.mts'4// Lightweight resourcesAction that doesn't import deploy actions machinery5// Use this when you only need basic k8s resource operations (apply, delete, etc)6// and don't need custom deploy actions like zipsecrets, deployhist, etc.8export const resourcesActionLite = async (props?: Record<string, unknown>) => {9 return await wrapKubeCoalesce(resourcesActionCore, props)10}