UNPKG

fast-deployment

Version:

A lightweight Node.js package for rapid deployment of Vue.js, Next.js, and Nuxt.js applications

9 lines (8 loc) 392 B
import { DeploymentConfig } from './config'; /** * Uploads the tarball to the server via SFTP and deploys it * @param config The deployment configuration * @param localTarballPath The local path to the tarball * @returns A promise that resolves when the deployment is complete */ export declare function deployToServer(config: DeploymentConfig, localTarballPath: string): Promise<void>;